var isNav, isIE

if (parseInt(navigator.appVersion) >=4 ) {
	if (navigator.appName == "Netscape") {
		isNav = true
	} else {
		isIE = true
		col1 = "all."
		styleObj = ".Style"
	}
}

function doNothing() {
}


function SubmitForm(){

	var index = document.forms['myform'].doit.selectedIndex;
	
	if (isNav == true) {	
		var t = document.forms['myform'].doit[index].value;	
	}
	else {
		var t = document.forms['myform'].doit.item(index).value;
	}
	
	var hcode = document.forms['myform'].hcode.value;
	
	document.forms['myform'].action = t+hcode;
	document.forms['myform'].submit();
}

function MM_openEmailWindow(theURL,winName,features) { 
  wn=window.open(theURL+'&url='+window.location,winName,features);
  wn.focus();

}

function recover()
{
	location.reload()
}


