/**********************************************************************
 Author          :Ravi Shankar
 Program Name    :print.js
 Project         :VII-100.Net
 Customer        :Induscorp USA       
 Version No      :1.0
 Description     :Removing the header and footer for printing.
 Start Date      :30/01/2006
 Revision History: 
---------------------------------------------------------------------
SL No Version No  Reason                       Mod Date      Author
---------------------------------------------------------------------

---------------------------------------------------------------------
**********************************************************************/
	function printwindow(id)
	{
		var x;
		var y;
		mwidth = document.body.clientWidth-300;
		mheight = document.body.clientHeight-200;
		poppos="center";
		if(poppos=="center")
		{
			x=(screen.width)?(screen.width-mwidth)/2:100;
			y=(screen.height)?(screen.height-mheight)/2:100;
		}
		if(id == 1)
		{
		window.open('PrintAboutVII.aspx?id='+id,'','toolbar=0,scrollbars=1,menubar=1,resizable=1,width='+mwidth+',height='+mheight+',top='+x+',left='+y+'')
		}
		else if(id == 2)
		{
		window.open('PrintPlaques.aspx?id='+id,'','toolbar=0,scrollbars=1,menubar=1,resizable=1,width='+mwidth+',height='+mheight+',top='+x+',left='+y+'')
		}
		else if(id == 3)
		{
		window.open('PreviewMail.aspx?id='+id,'','toolbar=0,scrollbars=1,menubar=1,resizable=1,width='+mwidth+',height='+mheight+',top='+x+',left='+y+'')
		}
			
		//return false;
	}

