currentUrl = unescape(location.href);
if (
		currentUrl.indexOf('172.23.2.8') != -1 ||
		currentUrl.indexOf('172.23.2.34') != -1 ||
		currentUrl.indexOf('helpme2teach') != -1 ||
		currentUrl.indexOf('kthostingsolutions') != -1 ||
		currentUrl.indexOf('taylorsinternetconnections') != -1
	) {	
		document.getElementById('containerDiv').style.display='';
		//document.getElementById('printWarning').style.display='none';
		document.getElementById('printWarning').className = "noPrint";
} else {
		//document.getElementById('printWarning').style.display='';
		document.getElementById('printWarning').className = "noPrint";
}

