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