function popUp(page,PWidth,PHeight,id) {
 eval("source"+id+"=window.open('"+page+"','fineline0','toolbar=0,scrollbars=yes,location=0,status=0,menubars=0,resizable=0,width="+PWidth+",height="+PHeight+"')")
eval("source"+id+".window.moveTo((screen.width/2)-(PWidth/2),(screen.height/2)-(PHeight/2))")
}

function popup(FILE, PWidth,PHeight,id) { 
CONTENT = "<HTML><HEAD><TITLE>JunkiYoshida.Com</TITLE></HEAD>" + 
"<BODY onBlur='window.close()' BGCOLOR='#FFFFFF' topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'><CENTER><IMG SRC='" + FILE + "' BORDER=0>" + 
"</CENTER>"+ "</BODY></HTML>";
pop = window.open("","","width="+PWidth+",height="+PHeight+",toolbar=0,scrollbars=0,menubar=0");
pop.document.open();
pop.focus();
pop.document.write(CONTENT);
pop.window.moveTo((screen.width/2)-(PWidth/2),(screen.height/2)-(PHeight/2));
pop.document.close();
}
