//phpウィンドウオープン
function winOpen( page )  {
	var win;
	win = window.open(page + ".php","download",
                          "toolbar=no,resizable=yes,width=800,height=600,left=0,top=0,screenX=200,screenY=100,scrollbars=yes");
	win.focus();
}

//htmlウィンドウオープン
function winOpen2( page )  {
	var win;
	win = window.open(page + ".html","download",
                          "toolbar=no,resizable=yes,width=750,height=600,left=0,top=0,screenX=200,screenY=100,scrollbars=yes");
	win.focus();
}
