function mail(x,c,n){y=confirm("Would you like to send a email now?");
if(y==true)window.open("mailto:"+n+"@"+c+"."+x);}

function oPop(hostName,url,win)
{
	if(url){
	window.open(hostName+url,win);
	}
}

function focusAgree()
{
document.compform.agree.focus();
}

function jumpMenu(jumpTo)
{
 document.location.href = jumpTo;
 //alert(jumpTo);
}

function submitIT(value)
{
alert(value);
//onClick="document.jumpForm.Submit.click()"
}

function popup(goto,width,height){
window.open(goto,'popupwindow','width='+width+',height='+height+',scrollbars,resizable'); 
}

function tickbox(name){
var form = window.document.compform;
switch(name){
  case "agree":
  form.agree.checked = true;
  form.Submit.disabled = false;
  break;
  case "reset":
  form.agree.checked = false;
  form.Submit.disabled = true;
  break;
  }
return false
}