/*セミナーページのポップアップの設定*/

function smartOpenWin(site){
    var browser = navigator.appName;
    width = 700;
    height = 700;
    swidth = ((screen.width/2)-(width/2));
    sheight = ((screen.height/2)-(height/2));
    macwidth = width-16;
    macheight = height-16;
    safariheight = height+1;
    if ((browser == "Microsoft Internet Explorer") && (navigator.appVersion.lastIndexOf('Mac') != -1)){ 
    	window.open(site,'photoImages','width='+ macwidth +',height='+ macheight +',top='+ sheight +',left='+ swidth +',resizeable=yes,scrollbars=yes');
    }
    if (navigator.userAgent.indexOf('Safari') != -1) {
    	window.open(site,'photoImages','width='+ width +',height='+ safariheight +',top='+ sheight +',left='+ swidth +',resizeable=yes,scrollbars=yes');
    }
    else
    {
    	window.open(site,'photoImages','width='+ width +',height='+ height +',screenY='+ sheight +',screenX='+ swidth +',top=' + sheight + ',left=' + swidth + ',resizeable=yes,scrollbars=yes');
    }
}


function couponWindow(page){
	if(page == "top"){
		smartOpenWin('coupon.html');
	} else {
		smartOpenWin('../coupon.html');
	}
}


/*ページ印刷の設定*/
function PrintPage(){
	if(document.getElementById || document.layers){
		window.print();		//印刷をします
	}
}

