//<A HREF="javascript: printSpecial()"><IMG SRC="/images/icon_print.gif" ALT="Print this page" WIDTH="20" HEIGHT="19" BORDER=0> </A>
// USE THIS <DIV> TAG TO IDENTIFY THE PRINTABLE CONTENT - <DIV ID="printready">

// JavaScript Document
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=600,left = 232,top = 84');");
}

function printSpecial()
{
	if (document.getElementById != null)
	{
		var html = '<html>\n<head>\n';
		html += '<link rel="stylesheet" href="/includes/athletic.css" type="text/css">';
		html += '\n</he' + 'ad>\n<body class="template">\n';
		// begin new HTML top
		html += '<table border="0" width="100%">\n';
		html += '<tr>\n'
		html += '<td valign="bottom" class="title">Athletics</td>\n';
		html += '</tr>\n';
		html += '</table>\n';
		html += '<div id="contentprint">\n';
		
		//if (document.getElementsByTagName != null)
		//{
			//var headTags = document.getElementsByTagName("title");
			//var headTags = document.getElementsByTagName("");
			//if (headTags.length > 0) {
				//html += '<h2 class="mtitle">' + headTags[0].innerHTML + ''; 
				//html += '</h2>'
					//}
		//}
		

		//html += '<TD>\n';
		// end new HTML top
		
		
		var printReadyElem = document.getElementById("printready");
		
		if (printReadyElem != null)
		{
				html += '' + printReadyElem.innerHTML ;
		}
		else
		{
			alert("Could not find the printready section in the HTML");
			return;
		}

		// begin new HTML bottom
		html += '<hr size="1" color="#CCCCCC" />Nova Southeastern University &copy; 2006-2007';
		html += '</div>\n';
		// end new HTML bottom
			
		html += '\n</bo' + 'dy>\n</ht' + 'ml>';
		var printWin = window.open("","printSpecial","scrollbars=1,menubar=1,width=750,height=500,left=10,top=10");
		printWin.document.open();
		printWin.document.write(html);
		printWin.print();
		printWin.document.close();
		//if (gAutoPrint) 
			//loadStyles(printWin);
			//printWin.focus();
			//printWin.print();
			//setTimeout(printWin.close,5000);
	}
	else
	{
		alert("Sorry, the print ready feature is only available in javascript-enabled browsers.");
	}
}


// End -->
