function open_window(theform, targetURL)
{
	theform.action = targetURL;
	var myPopupWin = window.open("","myPopupWin","toolbar=0,location=0,directories=0,scrollbars=0,status=0,menubar=0,resizable=1,width=785,height=400");
	if (myPopupWin.opener == null)
		myPopupWin.opener = window;
	myPopupWin.opener.name = "Main";
	myPopupWin.moveTo(100,100);
	theform.target = 'myPopupWin';
	theform.submit();
	//
}
