//******************************************************
//******************************************************
//	Function: Form_read
//	Purpose:  Intermedium file to retrieve variables and Form submit to the next page.
//			This will prevent user from identifying the name of the variables submitted
//			to database.
//	Input: 	lngProductKey, lngFormInfokey
//	Author:	Felix Horng
//	Date:	05/24/2002
//******************************************************
//******************************************************
function Form_read(lngProductKey, lngFormInfoKey){
		var Left_location = eval(screen.width/2 - 300);
		var Top_location = eval(screen.height/2 - 250);
		var winTemp = window.open("./postviewPDF.asp?lngProductKey=" + lngProductKey + "&lngFormInfoKey=" + lngFormInfoKey + "&rnd=" + Math.random(), "View"+lngProductKey , "toolbar=no, menubar=no, location=no, directories=no, resizable=yes, scrollbars=yes, left=" + Left_location + ", " + "top=" + Top_location);
}
