<!--
function printFriendly(lvl,head){
	if (document.getElementById != null){
		var html = '<HTML>\n<HEAD>\n<TITLE>UNSW - Online Handbook - Printer Friendly Page</TITLE>\n<LINK href="http://www.handbook.unsw.edu.au/styles/2007/handbook_'+lvl+'.css" rel="stylesheet" type="text/css">\n</HEAD>\n<BODY>\n<SPAN class="program">'+head+'</SPAN><BR>';
		var printReadyElem = document.getElementById("printFriendlyDiv");
		if (printReadyElem != null){
			html += printReadyElem.innerHTML;
		}else{
			alert("Sorry but I can't get the HTML");
			return;
		}
		html += '\n</BODY>\n</HTML>';
		var printWin = window.open("","printSpecial");
		printWin.document.open();
		printWin.document.write(html);
		printWin.document.close();
		printWin.print();
	}else{
		alert("Sorry, this printer friendly feature requires JavaScript.");
	}
}
//-->
