<!-- 
function clear_textbox()
{
document.form.keywords.value = "";
} 

function popup(mylink, new_win)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, new_win,'left=25,top=5,width=640,height=490,resizable=yes,scrollbars=yes');
return false;
}
function clear_textbox()
{
document.form.keywords.value = "";
} 

function launchWin(source) {
   win = window.open(source, 'win','Toolbar=no,status=no,scrollbars=yes,resizable=yes,width=800,height=440,left=70,top=1');

   if(navigator.userAgent.substring(0,9) >= "Mozilla/3") {
      win.focus();
   }
}

function pulldown_menu()
{
// Create a variable url to contain the value of the 
// selected option from the the form named pulldown and variable selectname
var url = document.pulldown.selectname.options[document.pulldown.selectname.selectedIndex].value

// Re-direct the browser to the url value
window.location.href = url 
}

/***********************************************
* Disable Text Selection script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/
function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE route
	target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
	target.style.MozUserSelect="none"
else //All other route (ie: Opera)
	target.onmousedown=function(){return false}
target.style.cursor = "default"
}

// To force radion button selection (web step 2)
function radio_validate() {
    args = radio_validate.arguments;
    formObj = args[0];
    var isOK = true;
    for (i=1;i<args.length;i++) {
	elemSelected=false;
	elems = formObj.elements[args[i]];
	for (j=0;j<elems.length;j++) if (elems[j].checked) elemSelected=true;
	if (!elemSelected) {
	    isOK = false;
	    alert("Please select your "+args[i].replace("_"," ")+" option.");
	}
    }
    return isOK;
}