// JavaScript Document

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-27387044-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();




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";	
				}
			}
	}
}
