function funcOpenFormWindow( strTheUrl )
{	
	var strWindowFeatures = "width=500,height=550,scrollbars=yes,resizable=yes,toolbar=no,menubar=yes,location=no,status=yes,directories=no,copyhistory=no,left=0,top=0,screenX=0,screenY=0";
	var strWindowName = "winForm";
	theWindow = winFunctionWindow = window.open(strTheUrl,strWindowName,strWindowFeatures);
}

