var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=20}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=yes,menubar=no,toolbar=no,resizable=no';
win=window.open(mypage,myname,settings);}

function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function getSiteRoot() {
	//get url sub folder
	var currURL = window.location.href.replace( "http://", "" );
	var SplitedURL = currURL.split("?")[0].split("/");
	var siteRoot = SplitedURL[(SplitedURL.length-2)];
	if(siteRoot.length<4) {
		siteRoot=siteRoot.substring((siteRoot.length-2), siteRoot.length);
	}
	else {
		siteRoot="1";
	}
	return siteRoot;
}

function gogogo(){
	url="http://203.149.214.160/myinfo/?";
	url += "prepaidacct=" + document.call.account.value;
	//url += "&pin=" + document.call.pin.value;
	url += "&nocdr=" + document.call.nocdr.value;
/*
	ui = */window.open(url,'viewlog','toolbar=no,width=650,height=600,directories=no,status=yes,scrollbars=yes,resizable=yes,menubar=no');
}

function authenticate(){
	var isWindows = false ;
	if (document.call.account.value.length < 12 || document.call.pin.value.length < 6){
		alert('Invalid account or pin. Please enter your 12 digits Account and 6 digits Pin again.');
	}
	else
	{
		gogogo();
	}
}
function toNextField(elmnt,content){
    if (content.length==elmnt.maxLength){
      next=elmnt.tabIndex;
      if (next<document.forms[0].elements.length){
        document.forms[0].elements[next].focus();
    }
  }
}
