// printOrgPage Begin
// Prints the page and then (IE Only) requests close 
function printOrgPg() 
{
  self.print();  
  history.back();  
}
<!-- 
// window.onload=printOrgPage; 
// printOrgPage End -->

// printSpecial - Begin
// Prints whatever is in <div id="printReady" 
// ... of this page through new temp page
var gAutoPrint = true; // Flag for whether or not to automatically call the print function
function printSpecial()
{
	if (document.getElementById != null)
	{
		var html = '<HTML>\n<HEAD>\n';
		if (document.getElementsByTagName != null)
		{
			var headTags = document.getElementsByTagName("head");
			if (headTags.length > 0)
				html += headTags[0].innerHTML;
		}
		html += '\n</HE' + 'AD>\n<BODY>\n';
		var printReadyElem = document.getElementById("printReady");
		if (printReadyElem != null)
		{
				html += printReadyElem.innerHTML;
		}
		else
		{
			alert("Could not find the printReady section in the HTML");
			return;
		}
		html += '\n</BO' + 'DY>\n</HT' + 'ML>';
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		if (gAutoPrint)
			printWin.print();
			printWin.close();
	}
	else
	{
		alert("Sorry, the print ready feature is only available in modern browsers.");
	}
}
// printSpecial - End

<!-- Begin Scrollmsg JavaScript Applet 
function ScrollMsg(interval)
{  var m1  = "Click inside a box to ";
   var m2  = "view the details of an ";
   var m3  = "organizational group.";
   var msg=m1+m2+m3; 
   var i   = 1;
   var out = " ";
   if (interval > 100) {
       interval--;
       var cmd="ScrollMsg(" + interval + ")";
       timerTwo=window.setTimeout(cmd,100);
   }
   else if (interval <= 100 && interval > 0) {
       for (i=0 ; i < interval ; i++) {
           out+=" ";
       }
       out+=msg;
       interval--;
       var cmd="ScrollMsg(" + interval + ")";
       window.status=out;
       timerTwo=window.setTimeout(cmd,100);
    }
    else
    if (interval <= 0) {
       if (-interval < msg.length) {
           out+=msg.substring(-interval,msg.length);
           interval--;
           var cmd="ScrollMsg(" + interval + ")";
           window.status=out;
           timerTwo=window.setTimeout(cmd,100);
       }
       else {
            window.status=" ";
           timerTwo=window.setTimeout("ScrollMsg(100)",75);
       }
   }
}
// -- End Scrollmsg JavaScript Applet -->

// printSpecDls - Begin
// DLS Test Version of printSpecial Prints whatever is in <div id="printReady" 
// ... of this page through new temp page
var gAutoPrint = true; // Flag for whether or not to automatically call the print function
function printSpecDls()
{
	printWin.print();
//			printWin.close();
	alert("printSpecDls is working");
}
// printSpecDls - End


