
function executeSearch (form_id) {
	if (form_id && document && document.getElementById) {
		var form = document.getElementById(form_id);
		form.submit();
	}
	return false;
}

function openWindow(theURL,winName,features) { //v2.0
  if(winName.length>0){
		document.winObj=window.open(theURL,winName,features);
		setTimeout('if(typeof document.winObj == "object"&&document.winObj!=null){document.winObj.focus();}else{document.location.href="'+theURL+'";}',70);
		return false;
	}
}
