// JavaScript Document

function submitSearch(){
	searchValue = document.getElementById('q').value;
	if(searchValue!="Search" && searchValue.length>1){
		window.location="/search/default.aspx?q="+searchValue;
	}else{
		alert("Please enter search criteria.");
		document.getElementById('q').value='';
		document.getElementById('q').focus();
	}
}

function styleCheckBoxes(){
	theBoxes = document.getElementsByTagName('input');
	
	if(theBoxes){
			for(i=0;i<theBoxes.length;i++){
				if(theBoxes[i].type=="checkbox" || theBoxes[i].type=="radio"){
					theBoxes[i].style.border="none";	
				}
			}
	}
}