//******************************************************
//******************************************************
//	Function: Form_read
//	Purpose:  Open a window and sumbit the querystring to postviewPDF.asp
//	Author:	
//	Date:	05/24/2002
//******************************************************
//******************************************************


var current=document.location;


function Form_read(lngReportImageID)
{
	var Left_location = eval(screen.width/2 - 300);
	var Top_location = eval(screen.height/2 - 200);
	var winTemp = window.open("../thirdpartyreports/postviewPDF.asp?lngReportImageID=" + lngReportImageID +"&txtCallingPage="+current, "View"+lngReportImageID, "toolbar=no, menubar=no, location=no, directories=no, resizable=yes, scrollbars=yes, width=600, height=400, left=" + Left_location + ", " + "top=" + Top_location);
}
