function returnjsRightColumn(divid,pagename) {
	xmlHttpForm = GetXmlHttpObject();
	var url = pagename;
	xmlHttpForm.open("POST", url, true);
	xmlHttpForm.onreadystatechange = returnjsRightColumnesult
	xmlHttpForm.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	xmlHttpForm.send("divid="+divid);
	
	setTimeout("returnjsRightColumn('rightColumnNew', '"+pagename+"')", 5000);
}
function returnjsRightColumnesult() {
	if(xmlHttpForm.readyState == 1) {
		document.getElementById(document.getElementById("hiddenIdRightCol").value).innerHTML = "<table width='100%' height='150' cellpadding='0' cellspacing='0'><tr><td valign='middle' align='center' style='font-family: Arial, sans-serif;font-size: 12px;'><img src='http://www.djswheels.com/images/loading.gif' border='0'></td></tr></table>";
	}
	if(xmlHttpForm.readyState == 4) {
		var retConArr = xmlHttpForm.responseText.split("####7####");
//		alert(retConArr[0]);
//		alert(retConArr[1]);
		document.getElementById(retConArr[0]).innerHTML = retConArr[1];
	}
}


function GetXmlHttpObject() {
	var objXMLHttp=null
	if (window.XMLHttpRequest) {
		objXMLHttp=new XMLHttpRequest()
	} else if (window.ActiveXObject) {
		objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP")
	}
	return objXMLHttp
}

function overLibMouseover(imgurl_prodlg) {
	if(document.getElementById("overDiv")) {
		document.getElementById("overDiv").style.marginLeft = '0px';
		//alert(document.getElementById("overDiv").style.marginLeft);
	}
	
	return overlib("<img src='"+imgurl_prodlg+"' border=1>", FULLHTML);
}
function overLibMouseout() {
	var i = nd();
	if(document.getElementById("overDiv")) {
		document.getElementById("overDiv").style.marginLeft = '-500px';
	}
	return i;
}