function SubWindow(URL){
	w = 320;
	h = 240;
	x = (screen.width - w) / 2;
	y = (screen.height - h) / 2;
	window.open(URL,"entry", "left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=yes");
}
