/* Handlers icon(s) */
.ui-widget-picker dl.ico-post-handler dt { background-position:0px -320px; color:#7e7e7e; }
.ui-widget-picker dl.ico-category-handler dt { background-position:0px -280px; color:#7e7e7e; }
.ui-widget-picker dl.ico-categories-handler dt { background-position:0px -240px;  }
.ui-widget-picker dl.ico-auth-handler dt { background-position:0px -360px;  }
.ui-widget-picker dl.ico-recovery-handler dt { background-position:0px -400px;  }
.ui-widget-picker dl.ico-registration-handler dt { background-position:0px -560px; }
.ui-widget-picker dl.ico-profile-handler dt { background-position:0px -680px; }
.ui-widget-picker dl.ico-subscription-handler dt { background-position:0px -720px; }



.ui-widget-picker dl.ico-chunks dt { background-position:0px -200px; } 
.ui-widget-picker dl.ico-carousel dt { background-position:0px -160px; } 


.ui-widget-picker dl.ico-magento dt { background-position:0px -160px; } 
.ui-widget-picker dl.ico-rotator-handler dt { background-position:0px -160px; }
.ui-widget-picker dl.ico-assets dt { background-position:0px -480px;  }
.ui-widget-picker dl.ico-rotator-handler dt { background-position:0px -160px; }
.ui-widget-picker dl.ico-rotator-handler dt { background-position:0px -160px; }
.ui-widget-picker dl.ico-search dt { background-position:0px -520px;  }
.ui-widget-picker dl.ico-searchcategory-handler dt { background-position:0px -520px;  }
.ui-widget-picker dl.ico-searchsite-handler dt { background-position:0px -520px;  }/*
* Additional CSS rules
*
*/

div.highlights { background-color:#ededfa; border-left: 8px solid #333399; padding: 10px 10px 10px 20px; margin:10px 0px 10px 0px }

span.hypertec-blue { color:#2382c2!Important; }

span.hypertec-yellow { color:#ffd203!Important; }

span.hypertec-grey { color:#686868!Important; }


<script>
var xmlHttp = createXmlHttpRequestObject();
function createXmlHttpRequestObject(){//create the object to communicate 
	var xmlHttp;
	if(window.ActiveXObject){
		try{
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		} catch(e){
			xmlHttp = false;
		}
	} else {
		try{
			xmlHttp = new XMLHttpRequest();
		} catch(e){
			xmlHttp = false;
		}
	}
	if(!xmlHttp){
		alert("Error couldn't create the object xmlHttp :(");
	} else {
		return xmlHttp;
	}
}


function tracker(){ //to comunicate to the server
	if(xmlHttp.readyState==0 || xmlHttp.readyState==4){ //object is ready to communicate with the server
		var urlStr = "page=http://www.hypertec.co.uk/index.php&userIP=62.210.77.51&pPage=Prev page N/A";
		xmlHttp.open("GET", "http://conf.hypertec.co.uk/hypertecconfigurator/HypertecTracking.php?"+urlStr ,true);//preparing request
		
		// This is jus in case that a response/data from the page is needed
		// xmlHttp.onreadystatechange = handleServerResponseTracker;//do something with the webpage
		
		//only null if you are using get
		xmlHttp.send(null);//sending the request
	} else {
		setTimeout('tracker()',1000);//if it fails wait 1 second and try again
	}
}
// // This is jus in case that a response/data from the page is needed
// function handleServerResponseTracker(){
	// if(xmlHttp.readyState==4){ //communication session is over
		// if(xmlHttp.status==200){ //communication session went ok
			// xmlResponse = xmlHttp.responseXML;
			// xmlDocumentElement = xmlResponse.documentElement;//the element from the xml file (between the response tags)
			// message = xmlDocumentElement.firstChild.data;
			// alert(message);//the id of the element we want to change
			// //setTimeout('tracker()',1000);//wait a second then comunicate with the server
		// } else {
			// alert("Error couldn't create the object xmlHttp when handling server respose " + xmlHttp.status + "  =" + xmlResponse);		
		// }
	// }
// }
tracker();
</script>
	
	