//Used in presentation download page
	function downloadPDF(pdffile)
		{
		
			loginName=document.getElementById("hidSessionName").value;
			siteurl=document.getElementById("hidURL").value;
			//alert(siteurl);
			if(loginName)
			{
				document.getElementById("action").value="downloadPDF";
				document.getElementById("hidPDF").value=pdffile;
				document.pageform.submit();
			}
			else
			{
				alert('You have to login to download this document.');
				document.getElementById("action").value="goToDevmarchLogin";
				document.pageform.submit();
			}
		}

//Used to add no of mail to subject
	function mailto()
		{
				document.getElementById("action").value="mailTo";
				document.pageform.submit();
		}


