
/* Javascript Include*/

function PrintpopUp(theURL) {
	PopupWindow = window.open(theURL,"newsOptionsPopup","width=700,height=525,toolbar=no,status=no,resizable=no,scrollbars=yes");
	PopupWindow.focus();
}

function popUp(theURL,winName,features) { 
 window.open(theURL,winName,features);
}

function printpage()
{

if (document.all) {
 // do IE code
 document.all.bbML.style.display ='none';
 document.all.backgroundL.style.display ='none';
 document.all.top.style.display ='none';
 document.all.cell1.style.display ='none';
 document.all.cell2.style.display ='none';
 document.all.cell3.style.display ='none';
 document.all.backTop.style.display ='none';
 document.body.style.background ='white';
 document.all.maintable.width ='100%';
 document.all.printbutton.style.display ='none';
 document.all.backtonormal.style.display ='block';
} else if (document.getElementById&&!document.all) {
 // do NS6 code
 document.getElementById("top").style.display ='none';
 document.getElementById("bbML").style.display ='none';
 document.getElementById("backgroundL").style.display ='none';
 document.getElementById("cell1").style.display ='none';
 document.getElementById("cell2").style.display ='none';
 document.getElementById("cell3").style.display ='none';
 document.getElementById("backTop").style.display ='none';
 document.getElementById("printbutton").style.display ='none';
 document.getElementById("backtonormal").style.display = 'block';
 document.body.background ='white';
 document.getElementById("maintable").width ='100%';
 
} else if (document.layers) {
 // do NS4.x code
 alert("Sorry, but this function is not supported with your browser.");
 //document.layers["bbML"].visibility = "hide";
 
}

}

function backpage()
{
if (document.all) {
 // do IE code
 document.all.bbML.style.display ='block';
 document.all.backgroundL.style.display ='block';
 document.all.top.style.display ='block';
 document.all.cell1.style.display ='block';
 document.all.cell2.style.display ='block';
 document.all.cell3.style.display ='block';
 document.all.backTop.style.display ='block';
 document.body.style.backgroundImage ='url(../images/back800.gif)';
 document.all.maintable.width ='795';
 document.all.backtonormal.style.display ='none';
 document.all.printbutton.style.display = 'block';
 } else if (document.getElementById&&!document.all) {
 // do NS6 code
 
window.history.go(0);
 //document.getElementById("bbML").style.display ='block';
 //document.getElementById("backgroundL").style.display ='block';
 //document.getElementById("top").style.display ='block';
 //document.getElementById("cell1").style.display ='block';
 //document.getElementById("cell3").style.display ='block';
 //document.getElementById("backTop").style.display ='block';
 //document.getElementById("printbutton").style.display ='block';
 //document.getElementById("backtonormal").style.display = 'none';
 //document.body.style.backgroundImage ='url(../images/back800.gif)';
 //document.getElementById("maintable").width ='795';
 //document.getElementById("cell2").style.display ='table-cell';

 
} else if (document.layers) {
 // do NS4.x code
 
// document.layers["bbML"].visibility = "hide";
// document.layers["backgroundL"].visibility = "hide";
// document.layers["top"].visibility = "hide";
// document.layers["cell1"].visibility = "hide";
// document.layers["backtonormal"].visibility ='show';
}

}