<!--
function clearme(FormField) {
	if (FormField.defaultValue==FormField.value) FormField.value=""
}

var xmlhttp;
var xmlResponse;
var strPredictions;
var xs;
//==============================================================================================
function LoadFile(url) {
	xmlhttp=null;
	if (window.XMLHttpRequest) {// Firefox, Opera, IE7
		xmlhttp=new XMLHttpRequest();
	} else if (window.ActiveXObject) {// IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}//end if (window.XMLHttpRequest)
	if (xmlhttp!=null) {
		xmlhttp.open("GET",url,true);
		xmlhttp.send(null);
	}//end if (xmlhttp!=null)
	return xmlResponse;
}//end function
//==============================================================================================
function GenFeed() {
	LoadFile("http://www.dovcor.com/genfeed.asp");
}//end function
//==============================================================================================
function SetStyle() {
//	var headID=document.getElementsByTagName("head")[0];
//	var cssNode=document.createElement('link');
//	cssNode.type='text/css';cssNode.rel='stylesheet';
//	cssNode.href='http://www.dovcor.com/config/site_styles.css';
//	cssNode.media='screen';
//	headID.appendChild(cssNode);

}//end function
//==============================================================================================
window.onload=function() {
	SetStyle();
}//end function
//==============================================================================================

