function rv_HanldeError(msg, url, lno) {
	window.onerror = null;
	var req = null;
	try{req = new XMLHttpRequest();}
	catch (ms){
		try{req = new ActiveXObject("Msxml2.XMLHTTP");} 
		catch (nonms){
			try{req = new ActiveXObject("Microsoft.XMLHTTP");} 
			catch (failed){req = null;}
		} 
	}
	msg = encodeURIComponent(msg);
	url = encodeURIComponent(url);
	lno = encodeURIComponent(lno);
	if (req != null) {
		req.open("GET", WB_URL+'/modules/rv-errornotify/ajax.php?msg='+msg+'&url='+url+'&lno='+lno + "&ajaxcachebust="+new Date().getTime(), true);
		// req.open("GET",'/modules/rv-errornotify/ajax.php?msg='+msg+'&url='+url+'&lno='+lno + "&ajaxcachebust="+new Date().getTime(), true);
		req.send(null);
	}
	window.onerror = rv_HanldeError;
	return false;
}
//window.onerror = rv_HanldeError;
