/**
 * @author bnusser
 */
function printPage() {
	var currentTemplate;
	var templateList=["#MainSplash","#Document","#Landing","#LandingNoSidebar"];
	for(var i = 0;i < templateList.length; i++){
		if(currentTemplate == undefined){
			currentTemplate = $(templateList[i]).attr('id');
		}
	}	
	var w = window.open("print.pg?template="+ currentTemplate +"", "printPage", "width=1000,scrollbars=1,menubar=1,toolbar=0,resizable=1");
	window.onbeforeunload = function() { try { w.close(); } catch(e) {} }
}
