<!--
	// Javascript Objects (Built-In)
	var protocol = window.location.protocol;
	var host = window.location.hostname;
	var port = window.location.port;
	var pathname = window.location.pathname;
	
	// Template Booleans
	var isDataPage = (pathname.lastIndexOf("/pages/") > 0) ? true : false;
	var isPrintPage = (pathname.lastIndexOf("/print/") > 0) ? true : false;
	
	// Exception Links (Print Page)
	var immutablePrintPageLinks = new Array(2);
	immutablePrintPageLinks[0] = "javascript:closeWindow();";
	immutablePrintPageLinks[1] = "javascript:printPage();";
//-->