//<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/dept.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><img src="/cwis/images/nsu.gif" border="0" alt="Nova Southeastern University [www.nova.edu]">\n';
		html += '</td>\n';
		html += '<td width="65%" class="print_title" valign="bottom">First Year and Transitional Students\n';
		html += '</td>\n';
		html += '</tr>\n';
		html += '<tr>\n'
		html += '<td colspan="2"><hr size="1" color="#CCCCCC" />\n';
		html += '</td>\n';
		html += '</tr>\n';
		html += '</table>\n';

var headTags = document.getElementById("title");
//alert(headTags);
	if (document.getElementById != null)
		{
			//var headTags = document.getElementsByTagName("head");
		
		if (headTags != null)
		{
		html += '<div class="print_subtitle">' + headTags.innerHTML ;
		html += '</div>'
		}
			//if (headTags.length > 0) {
			//	html += '<h1>' + headTags[0].innerHTML + ''; 
			//	html += '</h1>'
				//	}
						else
		{
			alert("Could not find ID!!!!");
			return;
		}
		
		}
		
		else
		{
			alert("DID ELEMENT WORK?");
			return;
		}
	
	//if (document.getElementsByTagName != null)
		//{
			//var headTags = document.getElementsByTagName("head");
			//var headTags = document.getElementsByTagName("TITLE");
			//if (headTags.length > 0) {
				//html += '<h1>' + headTags[0].innerHTML + ''; 
				//html += '</h1>'
					//}
		//}
		

		//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 += '<p>&nbsp;</p>';
		html += '<div class="print_footer">Nova Southeastern University &copy; 2005-2008</div>';
		// 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 -->
