// JavaScript Document
function OpenWindow(page){
	X = ((screen.width)/2)-280;
	Y = ((screen.height)/2)-190;
	window.open(page, "myWindow","status = 1, height = 390, width = 590, resizable = 0, left="+X+", top="+Y+", scrollbars=1");
}