var PrinterFriendly = {

	getElementByClassName:					function( className, tag, elm )
	{
		var testClass = new RegExp("(^|\\s)" + className + "(\\s|$)");
		var tag = tag || "*";
		var elm = elm || document;
		var elements = (tag == "*" && elm.all)? elm.all : elm.getElementsByTagName(tag);
		var returnElements = [];
		var current;
		var length = elements.length;
		for(var i=0; i<length; i++){
			current = elements[i];
			if(testClass.test(current.className)){
				returnElements.push(current);
			}
		}
		return returnElements;
	},
	
	stripLinks:								function( content )
	{
		var content = content || "<p>No page content available</p>"
		var re = /(<a([^>]+)>)/gi;
		content = content.replace(re, "");
		re = /(<([^>]+)a>)/gi;
		content = content.replace(re, "");
		return content;
	},
	
	popUp:									function( news )
	{
		news = news || false;
		var content;
		
		if( this.newwindow )
			this.newwindow.close();
		
		if( !news )
		{
			newwindow = window.open('printFriendly.html','printPage','width=850,height=700,scrollbars=1,resizable=1');
			content = this.getElementByClassName("middleColumn");
			newwindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>');
			newwindow.document.write('<title>St Margaret - Printer Friendly Version</title>');
		    newwindow.document.write('<link rel=\'icon\' href=\'assets/base/favicon.gif\' type=\'image/x-icon\' />');
			newwindow.document.write('<link rel=\'shortcut icon\' href=\'assets/base/favicon.gif\' type=\'image/x-icon\' />');
		    newwindow.document.write('<link rel="stylesheet" href="assets/script/popup.css">');
			newwindow.document.write('</head><body>');
			newwindow.document.write('<div class="header"><img src="assets/images/components/logo.gif" alt="our logo" class="displayMe"></div>');
			newwindow.document.write( this.stripLinks( content[0].innerHTML ) );
			newwindow.document.write('<div class="footer">www.stmarg.qld.edu.au | St Margaret\'s Anglican Girls School<br />Ph 07 3862 0777 Fax 07 3862 0701 Cricos Code: 00511K</div>');	
			newwindow.document.write('<script language="JavaScript">var answer = confirm ("Print this page?"); if (answer) {window.print();}</script>');
			newwindow.document.write('</body></html>');
			newwindow.document.close();
		}
		else
		{
			newwindow = window.open('printFriendly.html','printPage','width=850,height=700,scrollbars=1,resizable=1');
			content = this.getElementByClassName("middleColumn");
			newwindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>');
			newwindow.document.write('<title> </title>');
		    newwindow.document.write('<link rel=\'icon\' href=\'assets/base/favicon.gif\' type=\'image/x-icon\' />');
			newwindow.document.write('<link rel=\'shortcut icon\' href=\'assets/base/favicon.gif\' type=\'image/x-icon\' />');
			newwindow.document.write('</head><body>');
		    newwindow.document.write('<link rel="stylesheet" href="assets/script/popup.css">');
			newwindow.document.write('</head><body>');
			newwindow.document.write('<div class="header"><img src="assets/images/components/printerFriendly-enews.jpg" alt="our logo" class="displayMe eNews"></div>');
			newwindow.document.write( this.stripLinks( content[0].innerHTML ) );
			newwindow.document.write('<div class="footer">www.stmarg.qld.edu.au | St Margaret\'s Anglican Girls School<br />Ph 07 3862 0777 Fax 07 3862 0701 Cricos Code: 00511K</div>');	
			newwindow.document.write('<script language="JavaScript">var answer = confirm ("Print this page?"); if (answer) {window.print();}</script>');
			newwindow.document.write('</body></html>');
			newwindow.document.close();			
		}
		
		newwindow.focus()
	}
}
