<!--
function openWindow(form, popName, widthVal, heightVal, resizeVal){/*alert("form="+form+"\npopName="+popName+"\nwidthVal="+widthVal+"\nheightVal="+heightVal+"\nresizeVal="+resizeVal);*/var xx = null;/* convert heightVal to integer to allow for addition of 50px for TopPosition*/heightVal = parseInt(heightVal);LeftPosition = (screen.width) ? (screen.width-widthVal)/2 : 0;TopPosition = (screen.height) ? (screen.height-(heightVal+50))/2 : 0;if (LeftPosition < 0) {	LeftPosition = 0;}if (TopPosition < 0) {TopPosition = 0;}windowprops = "left="+LeftPosition+",top="+TopPosition+",width="+widthVal+",height="+heightVal+",location=no,scrollbars=no,menubars=no,toolbars=no,resizable="+resizeVal+",fullscreen=no";xx = window.open("", popName, windowprops);form.target=popName;form.submit();xx.focus();return false;}/*function submitForm(form){form.submit();return false;}*///-->

