/* Smartパンフレット用ポップアップウインドウの作成 */
function gotopamphlet(url,target) {
	window.open(url,target,'width=1010,height=655');
	return false;
}

/* POPUPカスタマイズ */
function winpopup2(winname,width,height){
        var url = document.getElementById("cat_link").href;
	var st = "scrollbars=yes,resizable=yes,toolbar=no,directories=no,location=no,menubar=no,status=no";
	var wx = width;
	var wy = height;
	var x = (screen.width  - wx) / 2;
	var y = ((screen.height - wy) / 2) - 30;
	var newwin = window.open(url,winname,"left="+x+",top="+y+",width="+wx+",height="+wy+","+st);
	newwin.focus();
}


