// JavaScript Document

function open_win(){
window.open("coupon.html","","scrollbars=yes,width=700,height=850");
}

function PrintPage(){
	if(document.getElementById || document.layers){
		window.print();		//印刷をします
	}
}
