function validateSearch(){
	var strCriteria
	var strValue
	
	var flag = true;
	if (document.frmSearch.txtSearch.value != ""){
		strCriteria = document.frmSearch.lstSearch.value;
		strValue = document.frmSearch.txtSearch.value;
		document.frmSearch.action = '/content/products/searchlist.asp?criteria=' + strCriteria + '&value=' + strValue; 
	}
	else{
		alert('Please provide a keyword / value to be searched.');
		flag = false;
		document.frmSearch.txtSearch.focus();
	}	
	return flag;
}

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}


function changeImages() {
	if (document.images) {
		for (var i = 0; i < changeImages.arguments.length; i += 2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i + 1];
		}
	}
}


var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		var manufacturer;
		var category;	
		manufacturer = newImage("/content/media/images/home/manufacturer.gif");
		manufacturer = newImage("/content/media/images/home/manufacturer-sel.gif");
		manufacturer = newImage("/content/media/images/home/manufacturer-over.gif");
		category = newImage("/content/media/images/home/category.gif");
		category = newImage("/content/media/images/home/category-sel.gif");
		category = newImage("/content/media/images/home/category-over.gif");
		preloadFlag = true;
	}
}

function Search(){
	
	var strCriteria
	var strValue
	
	if (StrTrim(document.frmSearch.txtSearch.value) != ""){
		strCriteria = document.frmSearch.lstSearch.value;
		strValue = document.frmSearch.txtSearch.value;
		//document.location = '/content/products/searchlist.asp?criteria='+strCriteria+'&value='+strValue; 
		document.location = 'http://www.picosearch.com/cgi-bin/ts.pl?index=226137&query=' + strValue;
	}
	else{
		alert('Please provide a keyword / value to be searched.');
		document.frmSearch.txtSearch.focus() ;
	}	
}

//function to show the Departments
	function showdiv(){
		if (divid1.style.display == "none"){
			divid1.style.display = "block";
			changeImages('CATMORE', '/content/media/images/interior/up_button.gif'); 
		}else{
			divid1.style.display = "none";
			changeImages('CATMORE', '/content/media/images/interior/down_button.gif'); 
		}
	}
//function to show the products
	function showdivprod(){
		if (divid2.style.display == "none"){
			divid2.style.display = "block";
			changeImages('MANUFACTURERMORE', '/content/media/images/interior/up_button.gif'); 
		}else{
			divid2.style.display = "none";
			changeImages('MANUFACTURERMORE', '/content/media/images/interior/down_button.gif'); 
		}
	}
	
function Authenticate(){
	document.frmHome.action = "/login.asp";
	document.frmHome.submit();
}

var message="Fox Electric Supply Company.All rights reserved."; // Message for the alert box
function click(e) {
	return true;
	if (document.all) {
		if (event.button == 2){
			alert(message);
			return false;
		}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(message);
			return false;
		}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
//document.onmousedown=click;
	
