function submitFunction(theForm) {
	theForm.target = "formWindow";
	theForm.action = "popUpForm.asp";
	window.open('','formWindow','width=300,height=250,scrollbars=no,resizable=no, top=' + (screen.height - 300) / 2 + ', left=' + (screen.width - 250) / 2 + '');
	theForm.submit();
}
function PopUpWindow(url,x,y)
{file_load
	= window.open(url,"plain","width=" + x +",height=" + y);
}
