// -- JavaScript By Shizu
function sub_win(name,wx,wy) {
	x = (screen.width  - wx) / 2;
	y = (screen.height - wy) / 2;
	window.open(name,"map","left="+x+",top="+y+",width="+wx+",height="+wy+",titlebar=no");
}
function map_win(name,wx,wy) {
	x = (screen.width  - wx) / 2;
	y = (screen.height - wy) / 2;
	window.open(name,"map","left="+x+",top="+y+",width="+wx+",height="+wy+",menubar=yes,scrollbars=yes");
}

// EOF

