// JScript source code
function popUpTest(){

	//alert(this.tblMainTable.Rows(1).Cells(1).InnerText);
	//alert(document.all.tblMainTable.rows(1).cells(1).innerHTML);
	var oPopup = window.createPopup();
	var oPopBody = oPopup.document.body;
    oPopBody.style.backgroundColor = "lightyellow";
    oPopBody.style.border = "solid black 3px";
    var sPopUpHTML = "<TABLE border=0><TR><TD>Banner</TD></TR><TR><TD>";
    sPopUpHTML = sPopUpHTML + document.all.tblMainTable.rows(1).cells(1).innerHTML;
    sPopUpHTML = sPopUpHTML + "</TD></TR>";
    sPopUpHTML = sPopUpHTML + "<TR><TD><A href='Javascript:window.print()'>Print</a></TD></TR></TABLE>";
    oPopBody.innerHTML = sPopUpHTML;
    oPopup.show(100, 100, 800, 800, document.body);

}

// printWindow function creates a new window of standard size with contents of TABLE object
//
function printWindow(tblCell,sTitle){
	

    //var sPopUpHTML = "<TABLE border=0 cellpadding=0 cellspacing=0><TR><TD class=printViewHeader vAlign=top align=left>"
    //sPopUpHTML = sPopUpHTML + "<div class=printViewHeaderImage></div>"
    //sPopUpHTML = sPopUpHTML + "<div id=titleLine>" + sTitle + "</div></TD></TR><TR><TD class=recordDetailsDataColumn>";
    //sPopUpHTML = sPopUpHTML + tblCell.innerHTML;
    //sPopUpHTML = sPopUpHTML + "</TD></TR>";
    //sPopUpHTML = sPopUpHTML + "<TR><TD class=printViewPrint align=right><A href='Javascript:window.print()'>Print</a></TD></TR><TR><TD class=printViewFooter></TD></TR></TABLE>";
    
    var sPopUpHTML = "<h3>Northern Ireland Sites & Monuments Record</h2></p><p>";
    var sReplaceString = tblCell.innerHTML.replace(/660/g, "650");
    sPopUpHTML = sPopUpHTML + sReplaceString; //tblCell.innerHTML;
    sPopUpHTML = sPopUpHTML + "</p>";
    sPopUpHTML = sPopUpHTML + "<div style='text-align:right; float: left; width:640px'><b><A href='Javascript:window.print()'>Print</a></b></div>";
    //sPopUpHTML = sPopUpHTML + "<BR><TEXTAREA style=height:200px;width=300px>" + sPopUpHTML + "</TEXTAREA>";
      
        
      
    //alert(sPopUpHTML);
    
	var win = window.open("","_blank","top=100,left=100,height=500,width=700,status=yes,toolbar=no,menubar=yes,scrollbars=yes,location=no,resizable=yes")
	//alert(win.document.styleSheets.length);
	
	win.document.createStyleSheet('http://www.ehsni.gov.uk/default.css');
	win.document.body.innerHTML = sPopUpHTML;
	win.document.body.topMargin = 0;
	//win.document.body.leftMargin = 0;
	win.document.title = sTitle;//"NISMR - Print Page";
	
	//alert(sPopUpHTML);
}	

// closeWindowAndRefresh function closes the current window and refreshes (reloading from 
// the server) the contents of the window that called the current window
//
function closeWindowAndRefresh(){
	window.opener.document.location.reload(true);
	window.close();
}

function closeWindow() {
	window.close();
}
