function pageGoBack() {
	window.history.go(-1);
}

function confirm_msg(msg,url) {
	input_box=confirm(msg);
	if (input_box==true){
		document.location=url;
	}
}

function checkIt(object) {
	object.checked = (object.checked) ? false : true;
}

function nav(strURL){
	window.location=strURL;
}


function submitRedirect() {
	document.payment_form.submit();
}

// F. Permadi May 2000
function doPassVar(args) {
	var sendText = args;
	getSWF('player').SetVariable("fileplay", sendText);
}

function getSWF(movieName) {
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName];
    }
    else {
      if(document[movieName].length != undefined){
          return document[movieName][1];
      }
        return document[movieName];
    }
}
