// JavaScript Document

function getURL()
{
szURL = document.URL;
componentList = szURL.split('/');
szDocument = componentList[componentList.length-1];
documentFilename = szDocument.split('.');
szDocumentTopic = documentFilename[0];
szNewURL = szDocumentTopic + "_print" + ".html";
window.open(szNewURL,'','');
//window.location.href=szNewURL;
//alert(szNewURL);
}

function checkPage(link)
{
if(pagevar=='home')
{
document.getElementById('print').href=link;	
//document.getElementById('discStatement').style.display='none';	
}
else {
//document.getElementById('discStatement').style.display='inline';		
}
}

function OpenModalDialog()

{

window.open('newco.html','IPL','screen.width, screen.height'); 

}

