
/* -----------------------------------------------------
	FLASH ページポップアップ
----------------------------------------------------- */
function popup_flash(id){
	var winName = 'viewer';
	var scrnW = (screen.width);
	var scrnH = (screen.height);
	var http_url= '/viewer/index.php?pe=' + id;
	var	winFocus = window.open(http_url,winName,"width="+scrnW+",height="+scrnH+", scrollbars=yes" );
	winFocus.focus();
}


/* -----------------------------------------------------
	FLASH ページポップアップ（サンプル）
----------------------------------------------------- */
function sample_popup_flash(){
	var scrnW = (screen.width);
	var scrnH = (screen.height);
	var http_url= '/viewer/sample.php';
	window.open(http_url,"viewer","width="+scrnW+",height="+scrnH+", menubar=no, toolbar=no, scrollbars=yes, resizable=yes");
}

