//Common features for eCRMagic

//***** THIS CODE IS WRITTEN BY SHEKHAR TO OPEN POPUP WINDOW FOR EMAIL THIS PAGE *******


function emailthispage()
	{

	pagelink=document.getElementById("strEmailURL").value 
	//alert(pagelink)
	window.open("/eCRMagicIncludes/server/emailthispage.asp?"+pagelink , "EmailThisPage", "scrollbars=yes,resizable=yes,width=467,height=467,left=100,top=50",true);
	//document.frmeCRMEmail.target = "EmailThisPage";
//	document.frmeCRMEmail.action = "/eCRMagicIncludes/server/emailthispage.asp" ;
// document.frmeCRMEmail.submit();
	}


//***** UP TO HERE *********************************************************************

//***** THIS CODE IS WRITTEN BY SHEKHAR TO OPEN POPUP WINDOW FOR PRINT THIS PAGE *******


function printthispage(printty,id)
	{
		
	var ptype = printty;
	var cid = id;
	//alert(ptype);
	//alert(cid);
	window.open("/eCRMagicIncludes/server/printthispage.asp?pty="+ptype+"&id="+cid  , "PrintThisPage", "scrollbars=yes,resizable=yes,width=467,height=467,left=100,top=50",true);
	//document.frmeCRMEmail.target = "PrintThisPage";
//	document.frmeCRMEmail.action = "/eCRMagicIncludes/server/printthispage.asp?pty="+ptype+"&id="+cid ;
	//document.frmeCRMEmail.submit();
	}

//***** UP TO HERE *********************************************************************

//***** THIS CODE IS WRITTEN BY HIREN PATEL TO OPEN POPUP WINDOW TO DISPLAY AND PRINT THE CONTENT OF THE INCLUDED PAGE *******
//function is for Tax Benefit Page
function printsamepage(prnpage)
	{
	var ppage = prnpage;
//	alert(ptype);
	window.open("/eCRMagicIncludes/server/printsamepage.asp?pty="+ppage , "PrintSamePage", "scrollbars=yes,resizable=yes,width=467,height=467,left=100,top=50",true);
//	document.frmeCRMEmail.target = "PrintSamePage";
//	document.frmeCRMEmail.action = "/eCRMagicIncludes/server/printsamepage.asp?pty="+ppage;
//	document.frmeCRMEmail.submit();
	}		
//***** UP TO HERE *********************************************************************


