﻿
function opentranscriptwindow()
	{
		window.open("/tools/transcript.aspx","transcript","menubar=no,resizable=no,width=510,height=695,toolbar=no,directories=no,status=no,scrollbars=no");
	}
	
function setPrintPreview(print_area) {
    var page = window.open("", "printerWindow", "width=800,height=670,left=100,top=20,scrollbars=yes,menubar=no, resizable=no,location=no,toolbar=no");
    page.document.writeln('<html><head><title>Print Preview</title>')
    page.document.writeln('<link href="/style.css" rel="stylesheet" type="text/css" />')
    page.document.writeln('<link href="print.css" rel="stylesheet" type="text/css" media="print">')
    page.document.writeln('<base target="_self"></head>')
    page.document.writeln('<body>');
    page.document.writeln('<form method="post">');
    page.document.writeln('<table width=100%><tr><td><img src="/images/inside_header_01.gif" alt="Drexel Online. A Better U." width="511" height="92" border="0"></td></tr><tr><td align=right>');
    page.document.writeln('<INPUT ID="PRINT" type="button" value="Print" ');
    page.document.writeln('onclick="javascript:location.reload(true);window.print();">');
    page.document.writeln('<input id="CLOSE" type="button" value="Close" onclick="window.close();">');
    page.document.writeln('</td></tr><tr><td></td></tr></table>');
    //Writing print area of the calling page
    //page.document.writeln(document.body.innerHTML);
    page.document.writeln('<table width=100%><tr><td colspan="2">');
    page.document.writeln(document.getElementById(print_area).innerHTML);
    page.document.writeln('</td></tr></table>');
    page.document.writeln('</form></body></html>'); 
 }
 
 function setDeLPromoCookie(sValue) {
    date = new Date();
    document.cookie = "delpromo" + "=" + escape(sValue) + "; domain=drexel.com; path=/; expires=Fri, 31 Dec 2099 23:59:59 GMT;";
 }
 
function expand(targetId) {
    target = document.getElementById(targetId);
        if (target.style.display == "none"){
            target.style.display = "";
        } 
        else {
            target.style.display="none";
        }
}

 
  
 

