Okay, I really need help.

For about 6 months now, I haven't been able to start up shoddy. I tried to fix it, and nothing worked. I always thought that it was a trojan (I didn't have internet security then), but once I got AVG, it said nothing was wrong. Yesterday I redownloaded shoddy and the newest version of java, and it still won't work.
Here are the error codes:

Okay, heres the launch code
<!--
***********************************************************************
***********************************************************************
HTML OUTPUT STARTED
***********************************************************************
***********************************************************************
-->

<!DOCTYPE html PUBLIC "-//W3C//Dtd XHTML 1.0 transitional//EN" "http://www.w3.org/tr/xhtml1/Dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<a name='prelog'></a><title></title>
<meta http-equiv="Content-Type" content="text/css; charset=UTF-8" />
<meta http-equiv="Content-Type" content="text/css; charset=iso-8859-6" />
<meta http-equiv="Content-Type" content="text/css; charset=windows-1256" />
<SCRIPT language="javascript1.2" src="../scripts/UMStartPage.js" ></SCRIPT>
<SCRIPT language="javascript1.2" src="../scripts/divfunctions.js"></SCRIPT>
<script language="JavaScript1.2" src="../scripts/jsrsClient.js" ></script>


<script type="text/javascript" language="JavaScript"><!--
function DoViewIFRAME(tid1,tid2,tid3) {
document.GuestPortal.hidPageFlag.value=-1;
document.getElementById(tid1).style.display = "none";
document.getElementById(tid2).style.display = "";
document.getElementById(tid3).style.display = "";
}
function DoHideIFRAME(tid1,tid2,tid3) {
document.GuestPortal.hidPageFlag.value=-1;
document.getElementById(tid1).style.display = "none";
document.getElementById(tid2).style.display = "none";
document.getElementById(tid3).style.display = "";
}
//-->
</script>


<SCRIPT language="JavaScript" type="text/JavaScript">
window_count = 0;
var my_window = new Array();

/*function cancelfeedback()
{

var i=0;
while(document.GuestPortal.elements)
{
if(document.GuestPortal.elements.type == 'radio')
document.GuestPortal.elements.checked=false;
if(document.GuestPortal.elements.type == 'text')
document.GuestPortal.elements.value="";
i++;
}
return showUsageDetails();


window.location = "GuestPortal.php";
} */

// remote scripting library
// (c) copyright 2005 modernmethod, inc
var sajax_debug_mode = false;
var sajax_request_type = "GET";
var sajax_target_id = "";
var sajax_failure_redirect = "";

function sajax_debug(text) {
if (sajax_debug_mode)
alert(text);
}

function sajax_init_object() {
sajax_debug("sajax_init_object() called..")

var A;

var msxmlhttp = new Array(
'Msxml2.XMLHTTP.5.0',
'Msxml2.XMLHTTP.4.0',
'Msxml2.XMLHTTP.3.0',
'Msxml2.XMLHTTP',
'Microsoft.XMLHTTP');
for (var i = 0; i < msxmlhttp.length; i++) {
try {
A = new ActiveXObject(msxmlhttp);
} catch (e) {
A = null;
}
}

if(!A && typeof XMLHttpRequest != "undefined")
A = new XMLHttpRequest();
if (!A)
sajax_debug("Could not create connection object.");
return A;
}

var sajax_requests = new Array();

function sajax_cancel() {
for (var i = 0; i < sajax_requests.length; i++)
sajax_requests.abort();
}

function sajax_do_call(func_name, args) {
var i, x, n;
var uri;
var post_data;
var target_id;

sajax_debug("in sajax_do_call().." + sajax_request_type + "/" + sajax_target_id);
target_id = sajax_target_id;
if (typeof(sajax_request_type) == "undefined" || sajax_request_type == "")
sajax_request_type = "GET";

uri = "/UI/UM/template1/usermanager/GuestPortal.php?PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28";
if (sajax_request_type == "GET") {

if (uri.indexOf("?") == -1)
uri += "?rs=" + escape(func_name);
else
uri += "&rs=" + escape(func_name);
uri += "&rst=" + escape(sajax_target_id);
uri += "&rsrnd=" + new Date().getTime();

for (i = 0; i < args.length-1; i++)
uri += "&rsargs[]=" + escape(args);

post_data = null;
}
else if (sajax_request_type == "POST") {
post_data = "rs=" + escape(func_name);
post_data += "&rst=" + escape(sajax_target_id);
post_data += "&rsrnd=" + new Date().getTime();

for (i = 0; i < args.length-1; i++)
post_data = post_data + "&rsargs[]=" + escape(args);
}
else {
alert("Illegal request type: " + sajax_request_type);
}

x = sajax_init_object();
if (x == null) {
if (sajax_failure_redirect != "") {
location.href = sajax_failure_redirect;
return false;
} else {
sajax_debug("NULL sajax object for user agent:\n" + navigator.userAgent);
return false;
}
} else {
x.open(sajax_request_type, uri, true);
// window.open(uri);

sajax_requests[sajax_requests.length] = x;

if (sajax_request_type == "POST") {
x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");
x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
}

x.onreadystatechange = function() {
if (x.readyState != 4)
return;

sajax_debug("received " + x.responseText);

var status;
var data;
var txt = x.responseText.replace(/^\s*|\s*$/g,"");
status = txt.charAt(0);
data = txt.substring(2);

if (status == "") {
// let's just assume this is a pre-response bailout and let it slide for now
} else if (status == "-")
alert("Error: " + data);
else {
if (target_id != "")
document.getElementById(target_id).innerHTML = eval(data);
else {
try {
var callback;
var extra_data = false;
if (typeof args[args.length-1] == "object") {
callback = args[args.length-1].callback;
extra_data = args[args.length-1].extra_data;
} else {
callback = args[args.length-1];
}
callback(eval(data), extra_data);
} catch (e) {
sajax_debug("Caught error " + e + ": Could not eval " + data );
}
}
}
}
}

sajax_debug(func_name + " uri = " + uri + "/post = " + post_data);
x.send(post_data);
sajax_debug(func_name + " waiting..");
delete x;
return true;
}


// wrapper for show_now
function x_show_now() {
sajax_do_call("show_now",
x_show_now.arguments);
}

function show_me(quotaconsumed)
{

//alert(quotaconsumed);
quotaconsumedarray=quotaconsumed.split("~");

if (quotaconsumedarray[1]=='-1')
{
setTimeout("get_quota()", 60000);
}
else if(quotaconsumedarray[1]=='0')
{
clearTimeout("get_quota()");
}
else if(quotaconsumedarray[1]=='1')
{
clearTimeout("get_quota()");
var strconfirm=confirm("Quota Exceeded Nearly " + quotaconsumedarray[0] +" Do you want to extend the Enrollment. Click ok to Extend");
if (strconfirm==true)
{
var sid= document.GuestPortal.hidsessionid.value;
document.GuestPortal.hidLogoutFlag.value=0;
document.GuestPortal.hidLogoutFlag1.value=0;
document.GuestPortal.hidPageFlag.value=-1;
document.GuestPortal.FHFlag.value= 1;

document.GuestPortal.method="POST";
document.GuestPortal.action='../formhandler/ExtEnrollmentFormHandler.php';
document.GuestPortal.submit();
}
}

}

function get_quota()
{
//put the return of php's show_now func
//to the javascript show_me func as a parameter
x_show_now(show_me);
//do it every 1 second onload="get_date();"
}

</script>
<!-- end script added for bug 532 by praveen on 28-12-2006-->

<script language="JavaScript1.2" type="text/JavaScript">

var popUpsBlocked ;
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.showModalDialog(theURL,winName,features);
}

//<!--
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a.indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a;}}
}

function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a)&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_findObj(n, d) { //v4.01
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers.document);
if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
var popUpsBlocked ;
var newwindow;
function ToBeClosed()
{

//if (getCloseConfirmation())
{
var LogoutFlag = document.GuestPortal.hidLogoutFlag.value;
var hidLogoutFlag1 = document.GuestPortal.hidLogoutFlag1.value;
var PageFlag= document.GuestPortal.hidPageFlag.value;
var EndOnClose = parseInt(document.GuestPortal.hidEndSessionOnClose.value); //Text
//alert('TOBeClosed '+PageFlag+' '+EndOnClose+'');
if (PageFlag ==1 && EndOnClose != 0 )
{
// RefreshLogout();
pausecomp(300);
callLogout();
pausecomp(300);
closeWindows();



if (parent.location == 'http://vbn.inter-touch.net/UI/UM/template1/usermanager/kiosk.html')
{
parent.window.location = "http://vbn.inter-touch.net/UI/UM/template1/usermanager/sitekiosk.html";
}

}
}

}

function pausecomp(millis)
{
var date = new Date();
var curDate = null;

do { curDate = new Date(); }
while(curDate-date < millis);
}


function closeWindows()
{
// alert(window_count);

if (window_count)
{
for (i=0; i < window_count; i++)
{
if (false == my_window.closed)
{
my_window.close();
// alert('Window open');
}
else
{
// alert('Window already closed!');
}
}
}
}

function getCloseConfirmation()
{
var PageFlag = document.GuestPortal.hidPageFlag.value;
var varlogout = document.GuestPortal.hidLogoutMsg.value;
var EndOnClose = parseInt(document.GuestPortal.hidEndSessionOnClose.value); // Text
//alert('GetCLoseConf '+PageFlag+' '+EndOnClose+'');
if (PageFlag ==1 && EndOnClose != 0 )
{
//event.returnValue = "You will be logged out if you exit this webpage. Please use another webpage to surf the internet.";
event.returnValue = varlogout;
// ToBeClosed();
}
}
/*
11/17/2006 Changed by Jyoti
for the bug 200 (559)
Linked the text box to the correspoding submit button so that it will get linked to proper validation function for the user entered values
kindly find the changes by searching "11/17/2006 Jyoti bug 200 (559)"

*/

function onEnter( evt, frm )
{
var keyCode = null;

if( evt.which )
{
keyCode = evt.which;
}
else if( evt.keyCode )
{
keyCode = evt.keyCode;
}
if( 13 == keyCode )
{
//alert('true');
return true;
}
//alert('false');
return false;
}




function setflag()
{
document.GuestPortal.hidPageFlag.value =-1;
//document.GuestPortal.hidCAC.value ='-1';
}

function setPageflag()
{

document.GuestPortal.hidPageFlag.value =4;
}
function setFeedbackValue(name1, value1 )
{

var idstr = 'Ques'+name1;
//alert(idstr);
document.getElementById(idstr).value =value1;
//alert( idstr+"hi"+document.getElementById(idstr).value);
//Added below code by praveen for Mozilla Compatibility on 1-12-2006
var rowct =document.GuestPortal.hidQuesCt.value;
var hidId=new Array();
for ( i=0;i < rowct; i++)
{
hidId= "feed"+i;

}
for ( i=0;i < rowct; i++)
{
if(document.getElementById(hidId).name==idstr)
{
//alert("in if");
// alert(document.getElementById(hidId).name);tytyut
document.getElementById(hidId).value=value1;
//alert(document.getElementById(hidId).value);
}
}
//End Add by Praveen 1-12-2006
return(true);
}

function calldecline()
{
var varalertinternet= document.GuestPortal.hidalertMsg.value;
alert (varalertinternet);
/*document.GuestPortal.submit();*/
return false;
}

function textFile()
{
document.GuestPortal.hidPageFlag.value=-1;
document.GuestPortal.action = "download.php";
document.GuestPortal.submit();
return true;
}

function saveLink()
{
document.GuestPortal.hidPageFlag.value=-1;
document.GuestPortal.action = "download.php?action=link";
document.GuestPortal.submit();
return true;
}

function myFunc(){
if(event.keyCode == 78){ //character "N"
if(event.ctrlKey){ //if press ctrl
event.returnValue = false;
event.keyCode = 0;
//alert(event.returnValue);
return false;
}

}
else if(event.keyCode == 116 || event.keyCode == 117 )
{
if(event.ctrlKey){ //if press ctrl

event.keyCode = 0;
event.returnValue = false;
event.cancelBubble = true;
return false;
}
}

}

function homepage()
{


origin = document.GuestPortal.originURL.value;
isSafari = document.GuestPortal.isSafari.value;

if(isSafari == 1)
{
window.open(origin);
}
else
{
my_window[window_count] = window.open("HomePage.html");
window_count++;
}

return true;
}

// Function Added to support Languagebar 12092006
function langurl(LangCode)
{

document.GuestPortal.hidPageFlag.value=-1;
document.GuestPortal.action = "../formhandler/SetLangFormHandler.php?butsave=Save&val="+LangCode;
document.GuestPortal.submit();
return true;

}
// End Function to support Languagebar



document.onkeydown = myFunc;

</script>

<script language="JavaScript">
<!--
//function open_on_entrance()
//{
//window.open('feedback.php','yahoocom', ' menubar,resizable,dependent,status,width=300,height=200,left=10,top=10')
//}


function confirm_entry()
{
feedback_prompt = document.GuestPortal.feedback_prompt.value;
feedback_cancel = document.GuestPortal.feedback_cancel.value;
feedback_thankyou = document.GuestPortal.feedback_thankyou.value;

input_box=confirm(feedback_prompt);
if (input_box==true)
{
// Output when OK is clicked
window.location = "feedback.php";
}

else
{
// Output when Cancel is clicked
alert (feedback_cancel );


}

}

// -->
</script>

</head>

<!--
***********************************************************************
***********************************************************************
BODY START
***********************************************************************
***********************************************************************
-->

<body onbeforeunload="return getCloseConfirmation();" onunload ="ToBeClosed();" >
<script type="text/JavaScript" language="JavaScript">
if(popUpsBlocked)
{
var varpopupmsg= document.GuestPortal.hidPopupMsg.value;
alert(varpopupmsg);
}
</script>

<FORM name="GuestPortal" id ="GuestPortal" method=post enctype="multipart/form-data"><input type="hidden" name="PHPSESSID" value="r8carn8j0kpj33k9b3jdj50pua97fv28" />
<input type="hidden" name="hidCAC" value=''/>
<input id='hidTimeleft' type= 'hidden' value = ''>
<input id='hidSessionStart' type= 'hidden' value = ''>
<input id='originURL' type= 'hidden' value = ''>
<input id='isSafari' type= 'hidden' value = ''>
<input id='hidWGid' name = 'hidWGid' type= 'hidden' value ='' >
<input id='FHFlag' name = 'FHFlag' type= 'hidden' value = '0' >
<input id='varFlag' name = 'varFlag' type= 'hidden' value = '' >
<input id='hid1' name = 'hid1' type= 'hidden' value = ''>
<input id='hid2' name = 'hid2' type= 'hidden' value = ''>
<input id='hid3' name = 'hid3' type= 'hidden' value = ''>
<input id='hidPurcMore' name = 'hidPurcMore' type= 'hidden' value = '0'>
<input id='hidNewPwd' name = 'hidNewPwd' type= 'hidden' value = ''>
<input name='hidAccessCode' type= 'hidden' value = '0'>
<input name="hidLogoutMsg" type="hidden" value="You are either trying to browse the Internet or attempting to close the browser window. This window contains important usage information. Please launch another window to browse the Internet. If you wish to log out, press OK. Otherwise, click Cancel to stay connected. " >
<input name="hidalertMsg" type="hidden" value="If you wish to access the Internet, select one of the pricing plans and click Accept" >
<input name="hidPopupMsg" type="hidden" value="Popup blocking software has been enabled on your computer. Click OK if you wish to remain logged on to the Internet." >
<input name="hidselbillplanpMsg" id="hidselbillplanpMsg" type="hidden" value = "Please Select A Bill Plan. " >
<input name="invalidAutoEnrollMax" id="invalidAutoEnrollMax" type="hidden" value = "For auto enrollment,please enter a valid no. of day(s) not more than 10 day(s) " >
<input name="AutoEnrollMax" id="AutoEnrollMax" type="hidden" value = "10" >
<input name="hidwirelessunameMsg" id="hidwirelessunameMsg" type="hidden" value = "Please enter your Username." >
<input name="hidwirelesspwdMsg" id="hidwirelesspwdMsg" type="hidden" value = "Please enter your Password." >
<input name="hidezyunameMsg" id="hidezyunameMsg" type="hidden" value = "Please enter your Ezytouch Username" >
<input name="hidezypwdMsg" id="hidezypwdMsg" type="hidden" value = "Please enter your Ezytouch Password" >
<input name="hidezyvalidunameMsg" id="hidezyvalidunameMsg" type="hidden" value="Please enter a valid Ezytouch Username" >
<input name="hidezyvalidpwdMsg" id="hidezyvalidpwdMsg" type="hidden" value="Please enter a valid Ezytouch Password" >
<input name="hidprepaidpwdMsg" id="hidprepaidpwdMsg" type="hidden" value = "Please enter your Pre-paid Card Password." >
<input name="hidprepaidunameMsg" id="hidprepaidunameMsg" type="hidden" value = "Please enter your Pre-paid Card Username. " >
<input name="hidroamingunameMsg" id="hidroamingunameMsg" type="hidden" value = "Please enter your Roaming Partner Username. " >
<input name="hidroamingpwdMsg" id="hidroamingpwdMsg" type="hidden" value = "Please enter your Roaming Partner Password. " >
<input name="hidoldpwdMsg" id="hidoldpwdMsg" type="hidden" value = "Please enter your Old Password." >
<input name="hidnewpwdMsg" id="hidnewpwdMsg" type="hidden" value = "Please enter a New Password." >
<input name="hidnewpwdminMsg" id="hidnewpwdminMsg" type="hidden" value = "New Password should have minimum 6 characters." >
<input name="hidconfirmpwdMsg" id="hidconfirmpwdMsg" type="hidden" value = "Please enter Confirm Password." >
<input name="hidincorrectpwdMsg" id="hidincorrectpwdMsg" type="hidden" value = "Old Password is incorrect." >
<input name="hidanotherpwdMsg" id="hidanotherpwdMsg" type="hidden" value = "New Password and Old Password are the same. Please enter another New Password." >
<input name="hidmatchpwdMsg" id="hidmatchpwdMsg" type="hidden" value = "Your New Password and Confirm Password did not match." >
<input name="hidreauthMsg" id="hidreauthMsg" type="hidden" value = "Time Out. Click ok to reauthorize the session details." >
<input name="hidminremainMsg" id="hidminremainMsg" type="hidden" value = "<<X>> Minutes Remaining" >
<input name="hidtimeoutMsg" id="hidtimeoutMsg" type="hidden" value = "Time Out" >

<!--
NEWLY ADDED STRINGS FOR TIMER YEAR/MONTH/WEEK/DAY/HOUR/MINS/SECS TRANSLATION
-->
<input name="hidUCPYear" id="hidUCPYear" type="hidden" value = "Year" >
<input name="hidUCPMonth" id="hidUCPMonth" type="hidden" value = "Month" >
<input name="hidUCPWeek" id="hidUCPWeek" type="hidden" value = "Week(s)" >
<input name="hidUCPDay" id="hidUCPDay" type="hidden" value = "Day(s)" >
<input name="hidUCPHour" id="hidUCPHour" type="hidden" value = "Hour(s)" >
<input name="hidUCPMin" id="hidUCPMin" type="hidden" value = "Min(s)" >
<input name="hidUCPSecs" id="hidUCPSecs" type="hidden" value = "Sec(s)" >

<input name="hidpopupblockMsg" id="hidpopupblockMsg" type="hidden" value = "popup blocked" >
<input name="hidclickoklogoutMsg" id="hidclickoklogoutMsg" type="hidden" value = "Click Ok to Log Out." >
<input name="hidfillfeedbackMsg" id="hidfillfeedbackMsg" type="hidden" value = "Please complete the feedback form." >
<input name="hidentercorpcodeMsg" id="hidentercorpcodeMsg" type="hidden" value = "Please enter your Corporate Access code." >
<input name="hidentervalidcorpcodeMsg" id="hidentervalidcorpcodeMsg" type="hidden" value="Please enter a valid Corporate Access code. " >
<input name="hidextendyourenollMsg" id="hidextendyourenollMsg" type="hidden" value="You have requested to extend your internet enrolment. Click OK to confirm or Cancel to cancel the request." >
<input name="minremaininputMsg" id="minremaininputMsg" type="hidden" value="Minute/s Remaining. If you like to extend your internet enrolment, please click OK. Otherwise, click Cancel to ignore this message." >
<input name="hidwirlessvalidunameMsg" id="hidwirlessvalidunameMsg" type="hidden" value="Please enter a valid Username." >
<input name="hidwirelssvalidpwdMsg" id="hidwirelssvalidpwdMsg" type="hidden" value="Please enter a valid Password." >
<input name="hidprepaidvalidpwdMsg" id="hidprepaidvalidpwdMsg" type="hidden" value="Please enter a valid Pre-paid Card Password." >
<input name="hidprepaidvalidunameMsg" id="hidprepaidvalidunameMsg" type="hidden" value="Please enter valid Pre-paid User Name." >
<input name="hidRoamingvalidunameMsg" id="hidRoamingvalidunameMsg" type="hidden" value="Please enter valid Roaming User Name." >
<input name="hidRoamingvalidpwdMsg" id="hidRoamingvalidpwdMsg" type="hidden" value="Please enter a valid Roaming Partner Password. " >
<input name="hidsessiontimeoutMsg" id="hidsessiontimeoutMsg" type="hidden" value="Timed Out" >
<input id='hidalertflag' type='hidden' value=0 ><input id='hidsessionid' type='hidden' value='5d7d6996-fd02-4c3b-93fa-c68cc02fee6c'>
<input id='hidTime' type='hidden' value='1246728932' >
<input name="hidLogoutFlag" type="hidden" value="1">
<input name="hidLogoutFlag1" type="hidden" >
<input name="hidGuestName" type="hidden" value="" >
<input name="hidErrorNo" type="hidden" value="" >


<input name="feedback_prompt" id="feedback_prompt" type="hidden" value="Dear Guest, We trust you are satisfied with the InterTouch Service. Should your experience be less than satisfactory, please press OK to register your dissatisfaction." >
<input name="feedback_cancel" id="feedback_cancel" type="hidden" value="Thank you. We are delighted to know that you are happy with the InterTouch experience. Happy browsing." >
<input name="feedback_thankyou" id="feedback_thankyou" type="hidden" value="Thank you for your feedback; this will allow us to check the hardware & network efficiency for your room. For immediate assistance, please call our toll free number: 0008006001119. We apologise for any inconvenience caused." >



<input name='hidPageFlag' type='hidden' value='0'><input name='hidIdRlogin' id='hidIdRlogin' type='hidden' value='0'>
<input name="hidStopButton" type=hidden value=0>
<input name="hidEndSessionOnClose" type=hidden value=>
<input id = 'hidAllowExtend' type= 'hidden' value = '0'>
<input name = "hidTimeoutReminder" type= "hidden" value = "5" >
<input name = "hidCurrentUrl" id= "hidCurrentUrl" type= "hidden" value = "/UI/UM/template1/usermanager/GuestPortal.php?PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28" >

<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="768" valign="top">



<div id='feedback' style='display:none'>
</div>




<!--
********************************************************************************************
********************************************************************************************
********************************************************************************************
CHANGEPASSWORD DIV END
********************************************************************************************
********************************************************************************************
********************************************************************************************
-->




</td>

<td width="225" rowspan="2" valign="top">
</td></tr>

</table>







<!--<link rel="stylesheet" type="text/css" href="gen/gen_base.css" />-->
<link rel="stylesheet" type="text/css" href="gen/gen.css" />
<link rel="stylesheet" type="text/css" href="custom/custom.css" />
<body>

<table align=center width="960" border="0" cellspacing="0" cellpadding="0" class=main_container>
<tr><td><table id=languagebar align=center><tr><td><a href='#' onclick='return langurl("en");'><img src='../lang/en.gif'></a></td><td><a href='#' onclick='return langurl("de");'><img src='../lang/de.gif'></a></td><td><a href='#' onclick='return langurl("it");'><img src='../lang/it.gif'></a></td><td><a href='#' onclick='return langurl("ja");'><img src='../lang/ja.gif'></a></td><td><a href='#' onclick='return langurl("zht");'><img src='../lang/zht.gif'></a></td></tr></table></td></tr>
<tr>
<td><table width='100%' class='banner' summary='Language Container'><tr><td ><img src='../common/imageupload.php?id=127'></img><img src='../common/imageupload.php?id=128;' alt='' class='black' ></img></td></tr></table></td>
</tr>

<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class=welcome>

<tr>
<td><table class='welcome'><tr><td></td></tr></table></td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr></tr>
<tr align="left">
<td valign=top bordercolor="#999999" style="padding-right:10px;">
<table width="100%">
<tr>
<td align="left">

<style>
b.white{display:block}
b.white *{
display:block;
height:1px;
overflow:hidden;
font-size:.01em;
background:#FFFFFF}
b.white1{
margin-left:3px;
margin-right:3px;
padding-left:1px;
padding-right:1px;
border-left:1px solid #FFFFFF;
border-right:1px solid #FFFFFF;
background:#FFFFFF}
b.white2{
margin-left:1px;
margin-right:1px;
padding-right:1px;
padding-left:1px;
border-left:1px solid #FFFFFF;
border-right:1px solid #FFFFFF;
background:#FFFFFF}
b.white3{
margin-left:1px;
margin-right:1px;
border-left:1px solid #FFFFFF;
border-right:1px solid #FFFFFF;}
b.white4{
border-left:1px solid #FFFFFF;
border-right:1px solid #FFFFFF}
b.white5{
border-left:1px solid #FFFFFF;
border-right:1px solid #FFFFFF}
b.whitefg{
background:#FFFFFF}
</style>


<b class='white'>
<b class='white1'><b></b></b>
<b class='white2'><b></b></b>
<b class='white3'></b>
<b class='white4'></b>
<b class='white5'></b></b>

<div class='' style='background-color:#FFFFFF'> <div id='errorMessage' style='display:none' dir=ltr ><table width='100%' id='errormsg'><tr><td> </td><td> </td><td> </td><td> </td></tr><tr><td></td><td></td><td></td></tr><tr><td></td><td colspan='2' valign='top'> Error Number [] : <br>Toll-free interTouch Helpdesk number:&nbsp;&nbsp;<b><BDO DIR=LTR>1 866 391 8328</BDO></b><br>Please close this window</td><td>&nbsp;</td></tr><tr><td></td><td colspan='2'>&nbsp; </td><td></td></tr></table></div><div id="login" style="display:none">
<table id="mainlogin"><tr><td><a target='_blank' href='http://www.inter-touch.com'><img src=../images/iTT_login_logo.gif></a></td></tr> <tr>
<td width='70%'><h2 id='errormsg'></h2><table id="mainloginleft" style="direction:ltr"><tr><td colspan='3'><h3 id=header>Please select a Pricing Plan</h3></td></tr><input name = 'hidBillPlan' type='hidden' value='10'><tr>
<td width='5%' height='27' valign='top'>

<input name='RadioButton' type='radio' checked onClick=' return callBillPlanDesc(this);' value='10' id=10 />
</td>
<td colspan='2' width='95%' valign='top'>
<input name='BPType' type='hidden' value=''>
<input name ='BillPlan' type =hidden >

<span class='priceplan' >24 hour Complimentary Internet access </span>
</td></tr><input name = 'hidRowCounts' type='hidden' value ='1'>
<input name = 'isCreditCard' type='hidden' value =''>
<input name = 'hidButtonFlag' type='hidden'><tr><td colspan='3' id='definedword'>I would like to stay connected for : <input name='AutoEnroll' value='1' type='text' size='3' /> day(s) <br /> </td></tr> <tr><td height='5' valign='top' colspan=4><strong></strong></td></tr><tr>
<td valign='top'></td>
<td colspan='2'>By clicking Accept, you agree to the Terms of Use for this service.<br /><br /><div id='termslink'>
<a href='#' onClick='return showTermsnCondition(0);' >View the Terms of Use</a> </div>

<div id='closelink' style='display:none'>
<a href='#' onClick='return showTermsnCondition(11);' >Click here to close the Terms of Use</a>
</div>
</td>
</tr><tr >
<td></td>
<td valign='top'>
<a href='#' onmouseout="MM_swapImgRestore()" ,1)">
<img src='../common/imageupload.php?id=129' alt='Accept' name='Accept' id='Accept' onclick='return getBillPlan()'/></a>
&nbsp;&nbsp;
<a href='#' onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('decline','','../common/imageupload.php?id=132',1)"><img src='../common/imageupload.php?id=131' name='decline' id='decline' onclick='return calldecline()'/></a>
</td>
</tr><tr>
<td></td>
<td>Toll-free interTouch Helpdesk number:&nbsp;&nbsp;<b><BDO DIR=LTR>1 866 391 8328</BDO></b></td>
</tr><tr height='15px'><td colspan=2></td></tr><tr >
<td></td>
<td>This plan includes wireless roaming in all areas of the hotel</td>
</tr></table><!-- LEFT PANEL--> </td>
<td rowspan='2' valign='top' width='30%'> <table id='mainloginright'><tr><td colspan='2'><h3 id=header></h3></td></tr><tr><td colspan='2'></td></tr><tr><td height='22' colspan='2' ><a href='?loginflag=cac&PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28' onclick='return setflag();'>Access Code</a></td></tr><tr><td height='22' colspan='2' ><a href='?loginflag=0&PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28' onclick = 'return setflag();'>Hotel Guest Login</a></td></tr><tr><td height='22' colspan='2' nowrap><a href='?loginflag=1&PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28' onclick = 'return setflag();'>interTouch login</a></td></tr><tr><td height='22' colspan='2' >Roaming Partner<br />
&nbsp;&nbsp;&nbsp;<a href = '?loginflag=3&rp=6&rpid=2&PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28'>ipass</a></td></tr><tr><td colspan=2></td></tr></table><!-- RIGHT PANEL--> </td>
</tr></table></div><div id='usagedetails' style='display:none ;direction:ltr'><table width='100%'><tr><td></td><td colspan='2'><table width='100%'><tr align=left><td><div align='right'></div></td><td><a href='#' style='text-decoration:underline;' > Usage Details</a></td><td></td><td width='10'></td><td width='128' ></td><td width='10'></td><td></td><td></td><td></td><td ></td></tr></table><table width='100%'><tr><td class='WhiteBG'><table width='100%'><tr><td><h2 > Usage Details</h2></td><td colspan='2' align='right'><input type=button style='font-family:Arial,Helvetica,sans-serif;' value='Start Surfing' onclick='return homepage();'> </td></tr><tr><td colspan='3' id='header' height='30px' valign='top'>Thank you for using interTouch</td></tr><tr><td id='definedword'><span class='boldred'>Room No</span></td><td id='usagedata' ><span class='boldred'>3rd-South-WAP</span></td></tr><tr><td colspan=3' id='definedword'><a href='#' style='text-decoration:underline;' onclick='return saveLink();' class='browselinka'>Click here to save this usage detail information</a> </td></tr><input type = 'hidden' name='hidPassword' value =''><tr><td colspan='3' align='left' class='definedword'>Toll-free interTouch Helpdesk number:<strong>&nbsp;&nbsp;<BDO DIR=LTR>1 866 391 8328</BDO></strong></td></tr></table></td></tr></table></td><td></td></tr></table></div><div id='Confirmation' style='display:none'><!-- CONFIRMATION BEGIN <BDO DIR=LTR>1 866 391 8328</BDO>,../images/image_white/,129,130 --><table width='100%'><tr><td></td><td colspan='2'><table width='100%'><tr><td></td><td>Please click Accept to continue surfing the Internet<br /><BR><BR></td></tr><tr><td></td><td><a href='#' onmouseout='MM_swapImgRestore()' onmouseover="MM_swapImage('Accept111','','../common/imageupload.php?id=130',1)"><img src='../common/imageupload.php?id=129' name='Accept111' id='Accept111' onclick='Confirmation();' /></a></td><td></td></tr><tr><td colspan='3' class='definedword'>Toll-free interTouch Helpdesk number:&nbsp;&nbsp;<BDO DIR=LTR>1 866 391 8328</BDO></strong></td></tr></table></td><td></td></tr></table><!-- CONFIRMATION END --></div><div id='roamingpartnerlogin' style='display:none'><table width='100%'><tr><td colspan=4></td></tr><tr><td></td><td></td><td></td></tr><tr><td>&nbsp; </td><td><table width='100%' id='mainloginleft'><tr><td colspan='3'><h2>Roaming Partner Login</h2></td></tr><tr><td colspan='3' id='definedword'>Select your Roaming Partner for Internet connection<br /><br /><table width='100%'><tr><td align='left'>
<a href = '?loginflag=3&rp=6&rpid=2&PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28'> <img src='../common/imageupload.php?id=6'></a></td><td scope='col'> <a href = '?loginflag=3&rp=6&rpid=2&PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28'> http://ipass.go2roam.com/ </a></td></tr></table><br /><br /></td></tr><tr><td colspan='3' id='definedword'><img src='../images/image_white/telephone.gif' alt='telephone' align='absmiddle'/>Toll-free interTouch Helpdesk number:<strong><BDO DIR=LTR>1 866 391 8328</BDO></strong></td></tr></table></td><td></td></tr></table></div><div id="RPLogin" style="display:none">
<table id="mainlogin"> <tr>
<td width='70%'><table width='100%' id='mainloginleft'><tr><td colspan='3'></td><tr><td colspan='3'><h5>Roaming Partner</h5></td></tr><tr><td colspan='2' valign='top'><h5>The Roaming Partner you have selected is:</h5></td></tr><tr><td colspan='2'></td></tr><th scope='col' align='center'></th><tr><td colspan='3' id='definedword'>Roaming service excludes access in meeting room and business center. For more
information, please contact your roaming provider.<br />By clicking GO, you agree to the Terms of Use for this service and billing commences.<br /><br /><div id='termslink'><a href='#' onClick='return showTermsnCondition(0);' >View the Terms of Use</a></div><div id='closelink' style='display:none'><a href='#' onClick='return showTermsnCondition(11);' >Click here to close the Terms of Use</a></div></td></tr></td></tr> <tr><td colspan='2'>&nbsp;</td></tr></table><!-- LEFT PANEL--> </td>
<td rowspan='2' valign='top' width='30%'> <table id='mainloginright'><tr><td colspan='2'>Login here with your iPASS username and password</td></tr><tr><td>Username</td><td><input name='txtRPUsername' id='RPUsername' type='text' size='10'onkeypress='if (onEnter(event,this.form)){return callWirelessLogin()}'/></td></tr><tr><td>Password</td><td><input name='txtRPPassword' id='RPPassword' type='Password' size='10' maxlength='50'onkeypress='if (onEnter(event,this.form)){return callWirelessLogin()}'/></td></tr><input name='select1' id='select1' type='hidden' value='~~~' ><tr><td></td><td><input type=button style='font-family:Arial,Helvetica,sans-serif;font-size:11px;cursor: hand;' value='GO' onclick='return callWirelessLogin();'/></a></td></tr><tr><td colspan='2'></td></tr><tr><td height='22' colspan='2' ><a href='?loginflag=cac&PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28' onclick='return setflag();'>Access Code</a></td></tr><tr><td height='22' colspan='2' ><a href='?loginflag=0&PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28' onclick = 'return setflag();'>Hotel Guest Login</a></td></tr><tr><td height='22' colspan='2' nowrap><a href='?loginflag=1&PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28' onclick = 'return setflag();'>interTouch login</a></td></tr><tr><td height='22' colspan='2' >Roaming Partner<br />
&nbsp;&nbsp;&nbsp;<a href = '?loginflag=3&rp=6&rpid=2&PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28'>ipass</a></td></tr><tr><td height='22' colspan='2'> <a href='?&PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28' onclick='return showLogin();'>Home</a> </td></tr></table><!-- RIGHT PANEL--> </td>
</tr></table></div><div id='MeetingRoom' style='display:none'><table width='100%'><tr><td></td><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td></tr><tr><td></td><td><table width='100%' id='MeetingRoom'><tr><td colspan=2><h2>Welcome to the Meeting Room</h2></td></tr><tr><td></td><td colspan='2'>Please click Accept to continue surfing the Internet<br /></td></tr><tr><td></td><td colspan='2'>By clicking Accept, you agree to the Terms of Use for this service.<br /><br /><div id='termslink'><a href='#' onClick='return showMeetingRoomTermsnCondition(0);'>View the Terms of Use</a></div><div id='closelink' style='display:none'> <a href='#' onClick='return showMeetingRoomTermsnCondition(11);'>Click here to close the Terms of Use</a></div></td></tr><tr><td></td><td><a href='#' onmouseout='MM_swapImgRestore()' onmouseover="MM_swapImage('Accept111','','../common/imageupload.php?id=',1)"><img src='../common/imageupload.php?id=129' alt='Accept' name='Accept111' id='Accept111' onclick='MRAccept();'></a></td><td>&nbsp;</td><br></tr><tr><td></td></tr><tr><td colspan='3'><img src='../images/image_white/telephone.gif'> Toll-free interTouch Helpdesk number: <BDO DIR=LTR>1 866 391 8328</BDO></td></tr></table></td><td></td></tr><tr><td></td><td colspan='2' ></td><td></td></tr></table></div><div id='changePassword' style='display:none ;direction:ltr'><table width='100%' border='0' cellpadding='0' cellspacing='0'><tr><td colspan='4'></td></tr><tr><td colspan='4'></td></tr><tr><td></td><td><table width='100%' border='0' cellpadding='0' cellspacing='0'><tr><td></td><td><a href='#' style='text-decoration:underline;' onClick='return showUsageDetails();'> Usage Details</a> </td><td></td><td></td><td><a href='#' style='text-decoration:underline;'>Change Password</a></td><td></td><td colspan='4'></td></tr></table><br /><table width='100%' border='0' cellspacing='0' cellpadding='0'><tr><td><table width='100%' border='0' cellspacing='0' cellpadding='2'><tr><td colspan='4'></td></tr><tr><td colspan='4'><h2>Change Password</h2></td></tr><tr><td height='30px' align=right></td><td colspan=3 align=right></td></tr><tr><td colspan='2' id='definedword'>Username</td><td colspan='2' id='definedword'></td></tr><tr><td colspan='2' id='definedword'>Old Password</td><td colspan='2'><input name='txtOldPassword' type='password' size='20' id='OldPassword' onkeypress= 'if (onEnter(event,this.form)){return validatePasswords();}' /></td></tr><tr><td colspan='2' id='definedword'>New Password</td><td colspan='2' id='definedword'><input name='txtNewPassword' type='password' size='20' id='NewPassword' onkeypress= 'if (onEnter(event,this.form)){return validatePasswords();}'/> Minimum of 6 characters </td></tr><tr><td colspan='2' id='definedword'>Confirm Password </td><td colspan='2'><input name='txtConfirmPassword' type='password' size='20' id='ConfirmPassword' onkeypress='if (onEnter(event,this.form)){return validatePasswords();}' /></td></tr><tr><td colspan='4' align=right><input type=button style='font-family:Arial,Helvetica,sans-serif;' value='Submit' onclick='return validatePasswords();'>&nbsp;&nbsp;<input type=button style='font-family:Arial,Helvetica,sans-serif;' value='Cancel' onclick='showUsageDetails();'>&nbsp;&nbsp;</tr><tr><td colspan='4' id='definedword'>Toll-free interTouch Helpdesk number:<strong>&nbsp;&nbsp;<BDO DIR=LTR>1 866 391 8328</BDO></strong></td></tr></table></td></tr></table></td><td></td></tr><tr><td colspan='4'></td></tr></table></div><div id='Logout' style='display:none'><table width='100%' ><tr><td> </td><td> </td><td> </td><td> </td></tr><tr><td colspan='2'></td><td>&nbsp; </td><td>&nbsp; </td></tr><tr><td>&nbsp; </td><td><table class='tableborder' width='98%'><tr><td valign='top'><table width='100%'><tr><td colspan='3'></td></tr><tr><td colspan='3' align=center><b>Thank you for using interTouch Broadband Internet Services</b><br> </td></tr></table></td></tr></table></td><td >&nbsp; </td></tr><tr><td></td><td colspan='2'>&nbsp; </td><td></td></tr></table></div><div id='BPDesc' style='display:none'><DIV id='BPdecription'></DIV></div> <div id='termsandconditions' style='display:none'><table width=100% id='termsandconditions'><tr><td colspan='2' rowspan='2'><ul><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body>
<h3><strong><u>Broadband Internet Access Agreement</u></strong></h3>
<p><strong>You are expected to use the Internet with respect, courtesy, and responsibility, giving due regard to the rights of other Internet users. We expect you to have a basic knowledge of how the Internet functions, the types of uses that are generally acceptable, and the types of uses that must be avoided. Common sense is the best guide as to what is considered acceptable use.By using the Broadband Services (.Services.), you agree to comply with these terms of use (the .Terms of Use.). Do not use the Services if you do not agree with these Terms of Use. The Services are provided at the Hotel by the party(ies) listed below (.Provider(s).).</strong></p>
<p>The Services are provided by the Providers and available only to entities and persons over the age of legal majority who can form legally binding agreement(s) under applicable law.If you do not qualify, you are not permitted to use the Services.</p>
<p>Your use of the Services commences when you click .Accept. and ends on the earlier of: (1) the removal of the cable from your computer; (2) your computer being turned off; or (3) your logging off from the Services. Once you click .Accept., the computer which you are using to access the Services is identified by its MAC address, and you will visit a splash page which contains information about, amongst others, the Providers, the premises where you currently are, advertising and links to other sites (the .Splash Page.). You are responsible for any use of the Services during a session from that address. </p>
<p>You are responsible for avoiding prohibited activities. Failure to observe the terms set forth in these Terms of Use can result in anything from a warning to a suspension of privileges or termination of the Services.Decisions of Providers. staff are final. The Providers may refer potential violations of laws to the proper authorities, may cooperate in the investigation of any suspected criminal or civil wrong, and will cooperate with authorities when required to do so by law, subpoena, or when the public safety is at stake.</p>
<p>By using the Services, you are using the Internet at your own risk. You shall ensure that anyone authorized by you to use the Services has read these Terms of Use and has agreed to be bound by them. The Providers are not responsible for any Internet content you view, nor transactions or data transmissions you undertake using the Services, nor any and all consequences therefrom. In relation to the Splash Page, the Providers are not responsible for any content of any advertising or for any linked site. </p>
<p>Links to third party web sites or information are provided solely as a convenience to you. Such links do not constitute or imply an endorsement, sponsorship, or recommendation by the Providers of the third party, the third-party web site, or the information contained therein. The Providers are not responsible for the availability of any such web sites. The Providers are not responsible or liable for any such web site or the content thereon. If you use the links, you will be subject to the terms of use and privacy policy applicable to those web sites.</p>
<h3><strong><u>General Use </u></strong></h3>
<p>The Providers will not, as an ordinary practice, proactively monitor and/or control the activities of those who use the Services to ensure that users comply with these Terms of Use and/or the law.</p>
<p>During the use of these Services you agree that you shall: </p>
<ul>
<li>keep private and confidential any identifying information assigned to you including user names, passwords, IP addresses, MAC addresses and other authentication methods;</li>
<li>not and not attempt to infringe the rights of any person, including intellectual property rights;</li>
<li>use the Services in accordance with all applicable laws and regulations of any relevant country and with industry codes of practice;</li>
<li>not and not attempt to do anything which would disrupt or interfere with other network users, services or equipment;</li>
<li>promptly notify the Providers if you learn of a security breach related to the Services;</li>
<li>not use any automated process or service to access and/or use the Services (such as a BOT, a spider or .meta-searching.);</li>
<li>not use any unauthorized means to modify or reroute, or attempt to modify or reroute, the Services;</li>
<li>not resell or redistribute the Services or any part of the Services;</li>
<li>not and not attempt to use the Services to solicit people to become subscribers of competing services or resell or attempt to resell the Services; and</li>
<li>comply with any requirements of the owner of the premises in which you are accessing the Services.</li>
</ul>
<p>The user acceptance page and the Splash Page are protected by copyright, trade mark and other intellectual property laws. The Providers own or are authorised to use all materials available at the Splash Page. You may make one copy of the material available at the user acceptance page and the Splash Page for your personal use only. On any copy of the material which you make, you must continue to include any copyright, trade mark or other notice on that copy. You may not modify or adapt any material at the user acceptance page or the Splash Page without our express permission. If you have any queries about the use of the material available at the user acceptance page and the Splash Page, please email <a href="mailto:info@inter-touch.com">info@inter-touch.com</a>. <strong></strong></p>
<h3><u>Consent to Transfer of Data</u></h3>
<p>In order to provide you with the Services, we may need to collect personal information that is capable of identifying you (.Personal Information.). This Personal Information is collected for system performance and security purposes.In addition, we will also collect Personal Information that you volunteer to us as part of our voluntary registration system.</p>
<p>With your consent, our practice is to store Personal Information in centralised servers that are located in Kuala Lumpur, Malaysia. </p>
<p>For this reason, we need you to consent to the transfer of Personal Information about you from the country in which you are provided with our Services, to Malaysia.Your consent is a requirement in order for us to provide you with the Services. If you do not consent to the transfer of Personal Information to Malaysia, do not click .Accept.. If you would like to know more about how we handle personal information, details are set out in our privacy policy available upon request. </p>
<h3><strong><u>Your obligations</u></strong></h3>
<p>The following is a non-exhaustive list of the obligations you shall comply with in order to use the Services, and shall by no means narrow the scope of any of your obligations under these Terms of Use:</p>
<h4><em><u>1. Email Abuse and Spamming</u></em><br />
<br />
The Services you are receiving from the Providers may include the ability to send and receive electronic mail. Use of your electronic mail account to send unsolicited commercial messages is prohibited. Mass electronic messages or "mail-bombing" (sending mass unsolicited mail or deliberately sending very large attachments to one recipient) are prohibited.Forging electronic mail headers (addresses) is also prohibited regardless of commercial content. Use of electronic mail to harass or intimidate other users is prohibited.</h4>
<p>Spamming, sending large numbers of unsolicited commercial email messages or unsolicited bulk email to advertise, offer, sell, or buy any goods or services, for any business or individual, is strictly prohibited. In response to a complaint, the Providers have the discretion to determine, from all of the evidence received, whether the intended recipients were from an .opt-in. email list.</p>
<p>In the interest of maintaining network performance, you should not send unreasonably large electronic mail attachments. You are prohibited from running programs designed to defeat network inactivity time-outs and maintaining an open SMTP relay is prohibited.</p>
<h4><em><u>2.Facilitating a Violation of these Terms of Use</u></em></h4>
<p>You are strictly prohibited from advertising, transmitting, or otherwise making available any software, program, product, or service that is designed to violate or facilitate a violation of these Terms of Use.This includes the facilitation of the means to spam, initiation of pinging, flooding, mailbombing, denial of service attacks, and piracy of software.</p>
<h4><em>3.<u> Illegal Activity and Tortious Conduct</u></em></h4>
<p>Any activity on the Providers. network that is a violation of any federal or local law is a violation of these Terms of Use. Prohibited activities may include, but are not limited to: transmitting obscene materials; intentionally spreading computer viruses; gaining unauthorized access to private networks; engaging in the transmission of pirated software; conducting or participating in illegal gambling, soliciting for illegal pyramid schemes through electronic mail or Internet web-site, newsgroups, Usenet, chat relay or chat room postings.</p>
<p>You are strictly prohibited from using the Services in a manner that: </p>
<ul>
<li>violates rules, regulations and policies applicable to any network, server, computer database, web site or ISP that you access through the Services;</li>
<li>violates any law, regulation, treaty or tariff; </li>
<li>is defamatory, fraudulent, indecent, offensive or deceptive; </li>
<li>threatens, harasses, abuses, or intimidates others; </li>
<li>damages the name or reputation of the Providers, their affiliates or subsidiaries; or</li>
<li>creates or attempts to utilize a domain name that is defamatory, fraudulent, indecent, offensive, deceptive, threatening, abusive, harassing, or which damages the name or reputation of the Providers.</li>
</ul>
<h4><em><u>4. Infringement of Intellectual Property Rights</u></em></h4>
<p>You are prohibited from making available, publishing, submitting, copying, uploading, posting, transmitting, reproducing, theft of, infringement on, or distributing information, software, or other material that is protected by copyright, trademark, patent, trade secret, any other type of intellectual property rights, trademark laws (by rights of privacy or publicity) or other proprietary right of any party unless you own or control the rights thereto or have received all necessary consents to do the same. This prohibition includes the use of any material or information including images or photographs that are made available through the Services.</p>
<h4><em><u>5. Interference with Other Customers Use</u></em></h4>
<p>You are prohibited from using the Services in a manner that interferes with other guests' use and enjoyment of the Services of the Providers.</p>
<h4><em><u>6.Internet Relay Chat, Chat Room Postings and Peer-to-Peer Networks and Abuse</u></em></h4>
<p>Although the Providers do not offer software or technical support for Internet Relay Chat (.IRC.), you may use the Services to connect to IRC servers and networks maintained by third parties. Please remember that you are a guest when you make use of these facilities. It is particularly important that you do not engage in activities that might interfere with other customers. access to IRC.</p>
<ul>
<li>You shall not use IRC scripts or programs that interfere with or deny service to other users on any other server, host, network, or channel.</li>
<li>You shall not engage in activities that harass other users. This includes, but is not limited to, .flooding. (rapidly entering text with the intent to disrupt service), .flashing. (disrupting terminal emulation), .takeovers. (improper seizing and abuse of operator privileges), attempting to send private messages to those who do not wish to receive them, attempting to return to a channel after being banned from it, and other disruptive behaviors.</li>
<li>You shall not attempt to impersonate other users. The use of nicknames does not necessarily constitute impersonation.</li>
<li>You shall not run .clones. (multiple, simultaneous IRC connections) and/or .robots..</li>
</ul>
<p><strong><em><u></u></em></strong></p>
<p>You are also prohibited from abusing chat rooms. Such abuse includes, but is not limited to, scrolling (repeatedly entering either meaningless characters, three or more repeated blank lines, the same text three or more times, or consistently repeating text in a Chat room).</p>
<p>You are expressly reminded that the uploading, downloading and/or any other form of transmission or receipt of certain types of data or content during use of and access into a peer-to-peer network may be in violation of civil and criminal laws in many legal jurisdictions worldwide, and use of the Services for such activities are not permissible.</p>
<h4><em><u>7. Internet Web-sites, Weblogs, Newsgroups and Usenet Postings and Abuse </u></em></h4>
<p>The Services give you access to millions of Internet web-sites, weblogs, newsgroups and Usenet groups (.Discussion Groups.). These Discussion Groups allow you to read and post articles on a variety of topics. Discussion Groups may be moderated or unmoderated. Discussion Groups may also have a charter that describes what posts are appropriate.</p>
<p>Posting commercial messages to a Discussion Group is a violation of these Terms of Use unless that specific Discussion Group has invited commercial postings in its charter. If you are unable to find a Discussion Group's charter, or the charter does not address commercial posts, you must assume that commercial posting to that Discussion Group is not welcome.</p>
<p>Posting off-topic articles or articles that are not related to that Discussion Group's subject matter as defined in the Discussion Group's charter are also not welcomed. Cross-posting identical postings to over five Discussion Groups, posting for the purpose of threatening, harassing or intimidating Discussion Group users and forging Discussion Group post header information are also prohibited activities.</p>
<p>The Providers do not censor or control content posted to a Discussion Group. As a user of the Services, you are solely responsible for the content that you publish. Upon notification that certain postings violate these Terms of Use, the law, or infringe on a trademark or copyrights of another, the Providers may, at their discretion, remove offending posts from its news server.</p>
<p>The Providers reserve the right not to accept postings from Discussion Groups where we have actual knowledge that the content of the Discussion Group violates these Terms of Use.</p>
<h4><em><u>8. Network and Computing Device Security</u></em></h4>
<p>You are required to take all necessary steps to manage the use of personal computing devices including the device.s hardware, operating systems, applications, services and databases (.Computing Device.) when connected with the Services obtained from the Providers. </p>
<p>Violations of any system or network security are prohibited, and may result in criminal and civil liability. The Providers will investigate incidents involving such violations and will cooperate with law enforcement if a criminal violation is suspected. </p>
<p>Examples of system or network security violations may include, but are not limited to the following:</p>
<ul type="disc">
<li>Failing to secure your system against abuse. You are responsible for configuring and securing your Computing Device(s) to prevent the disruption of service to other customers. You will be held liable if unknown third parties utilize your Computing Device or the Services at any time for the purpose of illegally distributing licensed software. It is your responsibility to monitor the use of your Computing Device and these Services. Examples of unsecured services would be use of SMTP relay, incorrect configuration of Proxy or SOCKS services, PC Anywhere, SNMP, FTP, VNC and HTTP. You are responsible for taking corrective actions on vulnerable or exploited systems to prevent continued abuse. It is your responsibility to ensure that your network and/or computer are configured in a secure manner.You may not, through action or inaction, allow others to use your network for illegal or inappropriate uses, and/or any other disruptive, provoking, abusive behavior that is in violation of these Terms of Use for the Service(s) you have purchased;</li>
<li>Using any software or device that allows your Computing Device to stay logged on while you are not actively using the Services;</li>
<li>Using the Services for the purpose of operating a server of any type without previously obtaining written consent from the Providers;</li>
<li>Uploading or distributing files that contain viruses, Trojan horses, worms, time bombs, cancel bots, corrupted files, or any other similar software or programs that may damage the operation of another.s computer or property of another;</li>
<li>Hacking . breaking the security on any computer network or accessing an account that does not belong to you. This includes, but is not limited to, unauthorized access to, or use of, data, systems or networks or devices thereof, including any attempt to probe, scan, or test the vulnerability of a system or network or to breach security or authentication measures without express authorization of the owner of the system or network;</li>
<li>Unauthorized monitoring of data or traffic on any network or system without express authorization of the owner of the system or network. This would include use of sniffers or SNMP tools.</li>
</ul>
<p></p>
<h4><em><u>9. Other Activities</u></em></h4>
<p>You are prohibited from engaging in any other activity, illegal or not, that the Providers determine in their sole discretion, to be harmful to its guests, operations, reputation, goodwill, or customer relations.</p>
<h3><u>Provision of the Services</u></h3>
<p>The Services is provided .as is. and relies on numerous factors which are outside the control of the Providers. The Services may not be continuous or reliable. The Providers are not responsible for any interruptions or faults in the provision of the Services that are outside the control of the Providers. </p>
<h3><u>Suspension of the Services </u><u> </u></h3>
<p>The Providers may immediately suspend or terminate your access to the Services if you breach any provision of these Terms of Use or the Providers suspect or have reason to suspect that you are in breach of any provision of these Terms of Use. </p>
<p>The Providers may also suspend or terminate access to the Services by reason of a technical failure or other technical problem with the provision of the Services.</p>
<p>In the case of the suspension or termination of access to the Services, all outstanding fees up to and including the time of suspension or termination become immediately payable upon suspension or termination, as applicable, and under no circumstances will any fees paid under these Agreement be refundable.</p>
<h3><u>Disclaimer of Warranties</u></h3>
<p>Use of the Services is at your risk. The Providers do not make any warranty or representation OF ANY KIND, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT, accuracy, currency, completeness, reliability or usefulness of information transmitted or accessed via the Services. The Providers also does not make any warranty that the Services (including the wireless network) will be uninterrupted, timely, secure, error free or virus free, OR THAT ANY ERRORS IN THE CONTENT WILL BE CORRECTED. THE SITE, THE SERVICES AND THE CONTENT ARE PROVIDED ON AN .AS IS. AND .AS AVAILABLE. BASIS<strong>. </strong><strong>YOU AGREE AND ACKNOWLEDGE THAT THE EXCLUSIONS OF LIABILITY AND WARRANTY PROVIDED IN THESE TERMS OF USE ARE FAIR AND REASONABLE.</strong><strong> </strong></p>
<p>Certain relevant consumer protection and other laws imply some conditions and warranties into these Terms of Use that cannot be excluded. These Terms of Use must be read so as to include any non-excludable terms. Otherwise and to the fullest extent permitted by law, all express or implied warranties, representations, statements, terms and conditions relating to your use of the Services or any material or content transmitted or accessed via the Services, not contained in these Terms of Use, are excluded from these Terms of Use.</p>
<h3><u>Fees </u></h3>
<p>You must pay the fees at the rates set out on the Acceptance Page for each use of these Services or as otherwise agreed with the Providers.</p>
<p>Fees may be charged for each use of these Services conducted on a particular computer. If you use a different computer during your stay at the Hotel, you may be charged separately for use of the Services conducted on that other computer. </p>
<p>For each use of these Services which is charged on a per minute basis, fees are calculated having regard to the beginning of the minute in which each use commenced.</p>
<p>For each use or parts of each use charged on a flat rate basis for a particular time period, fees are calculated on commencement of the time period. </p>
<h3><u>Payment </u></h3>
<p>If you are accessing the Services other than by prepaid cards or credit card (where available), billings for the Services will be made to your guest folio account with the Hotel. </p>
<h3><u>Prepaid Cards</u></h3>
<p>If you are using a prepaid card(s) to access the Services, you additionally agree that there is a validity period to the prepaid card(s), which may be but is not necessarily indicated on the prepaid card(s). Without prejudice to the other terms of these Terms of Use, you accept that you may not be able to access the Services after the validity period and/or expiry date of the prepaid card(s).</p>
<h3><strong><u>Indemnity and Limitation of Liability</u></strong></h3>
<h2>THE PROVIDERS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED AS A RESULT OF USING, MODIFYING, CONTRIBUTING, COPYING, DISTRIBUTING, OR DOWNLOADING MATERIAL THROUGH USE OF THE SERVICES.</h2>
<h5>YOU WAIVE, RELEASE, DISCHARGE AND RELINQUISH ANY AND ALL CLAIMS THAT YOU NOW HAVE AGAINST THE PROVIDERS, INCLUDING THEIR EMPLOYEES, OFFICERS AND AGENTS, WHICH ARISES DIRECTLY OR INDIRECTLY IN CONNECTION WITH ACCESS TO USE OF THE SERVICE.</h5>
<h5>IN NO EVENT SHALL THE PROVIDERS BE LIABLE FOR ANY INDIRECT, PUNITIVE, EXEMPLARY, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGE (INCLUDING LOSS OR BUSINESS, REVENUE, PROFITS, USE, BUSINESS OPPORTUNITIES, DATA OR OTHER ECONOMIC ADVANTAGE) HOWEVER IT ARISES, WHETHER FOR BREACH OR IN TORT, EVEN IF PROVIDERS HAVE BEEN PREVIOUSLY ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</h5>
<h5>IF YOU ARE DISSATISFIED WITH THE SITE, THE SERVICES, THE CONTENT, OR WITH THE TERMS OF USE, YOUR SOLE AND EXCLUSIVE REMEDY IS TO DISCONTINUE USING THE SITE.</h5>
<h5>YOU HAVE SOLE RESPONSIBILITY FOR ADEQUATE PROTECTION AND BACKUP OF DATA AND/OR EQUIPMENT USED IN CONNECTION WITH THE WEBSITE AND WILL NOT MAKE A CLAIM AGAINST THE PROVIDERS FOR LOST DATA, RE-RUN TIME, INACCURATE OUTPUT, WORK DELAYS OR LOST PROFITS RESULTING FROM USE OF THE SERVICES.</h5>
<h5>YOU AGREE TO HOLD THE PROVIDERS HARMLESS FROM, AND YOU COVENANT NOT TO SUE THE PROVIDERS FOR, ANY CLAIMS BASED ON USING THE SERVICES. </h5>
<h5>YOU AGREE TO INDEMNIFY THE PROVIDERS AND THEIR RESPECTIVE DIRECTORS, EMPLOYEES AND AGENTS, FROM AND AGAINST ANY LOSS, DAMAGE, EXPENSE OR LIABILITY SUFFERED OR INCURRED BY THE PROVIDERS AS A RESULT OF: (1) MATERIAL OR INFORMATION TRANSMITTED BY YOU VIA THE SERVICES; (2) YOUR USE OF THE SERVICES; OR (3) YOUR BREACH OF THESE TERMS OF USE.</h5>
<p><strong>YOU AGREE AND ACKNOWLEDGE THAT THE INDEMNITY AND LIMITATIONS OF LIABILITY PROVIDED IN THESE TERMS OF USE ARE FAIR AND REASONABLE.</strong> </p>
<h3><u>General</u><u> </u></h3>
<p>The Providers may change, vary or amend these Terms of Use without prior notice to you. Your use of the Services following any such change, variation or amendment of the Terms of Use constitutes your agreement to follow and be bound by the Terms of Use as amended. Please ensure that you read these Terms of Use each time you access the Services. It is deemed that by clicking .Accept., you have read and agree to abide by these Terms of Use as in operation at the time of access.</p>
<p>These Terms of Use is governed by the laws of the country within which you are accessing the Services and you and the Providers agree to submit to the non-exclusive jurisdiction of the courts of that country.</p>
<p>If any provision of these Terms of Use are found to be invalid or unenforceable by a court of law, such invalidity or unenforceability will not affect the remainder of the provisions contained herein which will continue in full force and effect.<br />
<br />
These Terms of Use set out the entire agreement between you and the Providers with respect to the Services. Nothing in these Terms of Use constitutes either of any legal relationship between you and the Providers of an agent, partner or employee of the other and neither party has a right or authority to bind the other party.</p>
<p>No waiver by the Providers of any breach or default hereunder shall be deemed to be a waiver of any preceding or subsequent breach or default.</p>
<h3><strong><u>Report of Abuse</u></strong></h3>
<p>Any party seeking to report a violation of these Terms of Use should contact the Providers. </p>
<h3><strong><u>Providers</u></strong></h3>
<p>.Provider(s). means (Owned by .Intertouch Hotels Sdn. Bhd..), and LegalComp</p>
</body>
</html>
'</ul></td></tr></table></div> </div>
<b class='white'>
<b class='white5'></b>
<b class='white4'></b>
<b class='white3'></b>
<b class='white2'><b></b></b>
<b class='white1'><b></b></b></b>
</div> </td>
</tr>
<tr>
<td valign=top>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign=top width="30%">
</td>
<td valign=top width="70%" style="padding-left:10px;">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>

<td valign=top width=200>
<br />


</td>

</tr>
</table>
</td>
</tr>

<tr>
<td><table id='WalledGarden'><tr><td><div class=header><h4></h4></div></td></tr><tr><td><table id='WalledGarden'><tr></tr></td></table></tr></td></table></td>
</tr>
<tr>
<td><table id='Privacy'><tr><td>Copyright © 2000 – 2007 inter-touch Pte Ltd.All rights reserved. interTouch and its logos are registered marks and services marks of inter-touch Pte Ltd.All other trademarks and logos are the property of their respective owners.<a href='../common/Privacy_Policy.html?PHPSESSID=r8carn8j0kpj33k9b3jdj50pua97fv28' target=_blank >Privacy Statement</a></td></tr></table></td>
</tr>
</table>
</body>


</form>
<script>
// If sitekiosk.html is detected, then disable EndSessionOnUCPClose
if (parent.location == 'http://vbn.inter-touch.net/UI/UM/template1/usermanager/sitekiosk.html')
{
// Disable End Session On UCP close;
document.GuestPortal.hidEndSessionOnClose.value = 0;
// alert(parent.location);
}
//alert(document.referrer);
//Fixed on 24th Sept 2008
//Handle rendering of page when Advert is delayed in loading
showLogin();;
</script>
</body>
</html>



and the exerption:
MissingFieldException[ The following required field is missing from the launch file: <jnlp>]
at com.sun.javaws.jnl.XMLFormat.parse(Unknown Source)
at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
at com.sun.javaws.jnl.LaunchDescFactory.buildDescriptor(Unknown Source)
at com.sun.javaws.Launcher.updateFinalLaunchDesc(Unknown Source)
at com.sun.javaws.Launcher.prepareToLaunch(Unknown Source)
at com.sun.javaws.Launcher.launch(Unknown Source)
at com.sun.javaws.Main.launchApp(Unknown Source)
at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
at com.sun.javaws.Main$1.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
 

Users Who Are Viewing This Thread (Users: 1, Guests: 0)

Top