﻿// JScript File


var newWindow
function makeNewWindow(grid) {
    if (!newWindow || newWindow.closed) {
        newWindow = window.open("","","width=600,height=400,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,copyhistory=no,resizable=yes")
        if (!newWindow.opener) {
        newWindow.opener = window
        }
        // force small delay for IE to catch up
        setTimeout("writeToWindow('"+grid+"')", 50)
    } else {
        // window's already open; bring to front
        newWindow.focus()
    }
}
function writeToWindow(grid) { //onload="window.print()"<script type="javscript">window.print();</script>
    // assemble content for new window
    var HtmlDocument = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">';
    HtmlDocument += '<html xmlns="http://www.w3.org/1999/xhtml"><head><title>Day Break Venture</title></head>';
    HtmlDocument +='<body style="font-family: tahoma;font-size: 11px;" onload="window.print()">'+document.getElementById(grid).innerHTML +'</body></html>'; 

    newWindow.document.write(HtmlDocument);
    newWindow.document.close() // close layout stream
    
}




