function OpenWin(){
	win=window.open("../no1/index.html","new","width=540,height=630,scrollbars=yes");
}

function winOpen(Aurl,Aname,Awidth,Aheight,Atoolbar,Alocation,Astatus,Ascroll,Amenu,Aresize){
 Astr = "width=" + Awidth;
 Astr+= ",height=" + Aheight;
 if(Atoolbar)Astr+= ",toolbar";
 if(Alocation)Astr+= ",location";
 if(Astatus)Astr+= ",status";
 if(Ascroll)Astr+= ",scrollbars";
 if(Amenu)Astr+= ",menubar";
 if(Aresize)Astr+= ",resizable";
 window.open(Aurl,Aname,Astr);
}