
function TELEgoToUrl(Url) 
{
	if ((document.forms[0].SessId.value == "$SESSID$") || (document.forms[0].SessId.value == "0")) {
		TELElog("ScId-");
         	eval("self.location='"+Url+"'");
	}
	else {
		TELElog("ScId-");
        	eval("self.location='/cgi-bin/cgiwrap/cotton/func?submit=Url&SessId="+document.forms[0].SessId.value+"&Url="+Url+"'");
      	}
  	document.TELEreturnValue = false;
}

function TELEhtdigGoToUrl(Url) 
{
	if ((document.forms[0].SessId.value == "$SESSID$") || (document.forms[0].SessId.value == "0")) {
		TELElog("ScId-");
         	eval("self.location='"+Url+"'");
	}
	else {
		TELElog("ScId-");
		var urlSplits = Url.split("/");
		if (Url.search("news") == -1) {
        		eval("self.location='/cgi-bin/cgiwrap/cotton/func?submit=Url&SessId="+document.forms[0].SessId.value+"&Url="+urlSplits[urlSplits.length-1]+"'");
		}
		else {
			var newsSplits = urlSplits[urlSplits.length-1].split("-");
        		eval("self.location='/cgi-bin/cgiwrap/cotton/func?submit=ViewNews&SessId="+document.forms[0].SessId.value+"&NewsId="+newsSplits[0]+"'");
      		}
	}
  	document.TELEreturnValue = false;
}

