function popup(URL,name,width,height) {
		HorizPos = 0;
		VertPos = 0;
		if(screen){
			HorizPos = (screen.width-width) / 2;
			VertPos = (screen.height-height) / 2;
		}
		varPopupWin=window.open(URL, name,'width='+width+',height='+height+',left='+HorizPos+',top='+VertPos+',scrollbars=yes,toolbar=no,menubar=no,resizable=yes');
		varPopupWin.focus();
}
function divchange(theD) {
	theDiv = document.getElementById(theD.id);
	if(theDiv.className=="") {
		theDiv.className="roll";
	}else {
		theDiv.className="";
	}
}
function setCookie(name, value, expires, path, domain, secure) {
   	document.cookie= name + "=" + escape(value) +
       ((expires) ? "; expires=" + expires : "") +
       ((path) ? "; path=" + path : "") +
       ((domain) ? "; domain=" + domain : "") +
       ((secure) ? "; secure" : "");
}
function ShowAnalytics(s_id,tContainer) {
	if(tObj = document.getElementById(tContainer)) {
		tObj.innerHTML = '<img src="/analytics/shows/?show='+s_id+'" alt="analytics shows" width="0" height="0" style="display:none" />';
		/*
		var i2=new Image(1,1);
  		i2.src= 'analytics/shows/?show='+s_id;
  		i2.onload=function() { _sVoid(); }
		*/
	}
}
function _sVoid() {	return;	}