/****
   function used in antz
***/

function openmywindow(url,msg,width,height) {
   if ( width==0 ) width=500;
   if ( height==0 ) height=400;
   msgWindow=window.open(url, msg,
'resizable=1,location=0,directories=0,status=0,menubar=0,scrollbars=yes,toolbar=0,width='+width+',height='+height)
}

function setFocus () {
	window.focus()
} 

function setaformvalue (name,val) {
	document.forms['antzform'].elements[name].value=val;
	document.forms['antzform'].submit();
	return(false);
}

function setLocation( url ) {
   window.location.href = url;
}

