﻿function searchClicked() {
	var opartnum = document.getElementById("pn");
	if (opartnum) {
		s = opartnum.value;
		if (s.trim() == "Search by Part Number" || s.trim() == '????#') {
			alert("Please enter the part number you are looking for.");
			opartnum.value = "";
			opartnum.focus();
			return false;
		} else {
			s = s.trim().toUpperCase();
			opartnum.value = s;
		}
	}
	return true;
}

function menuClicked(ref) {
	if( ref == 'shoppingCart' ) {
		if( Get_Cookie('aipco_session') ) {
			ref = "http://store.aipco.com/newaipco/shoppingCart";
		}
	}
	if ((ref == 'products') ||
	   (ref == 'linecard') ||
	   (ref == 'partners') ||
	   (ref == 'company')  ||
	   (ref == 'forms')    ||
	   (ref == 'rfq')      ||
	   (ref == 'contact')) 
	{
		ref = "http://www.aipco.com/" + ref;
	}
	url = ref+".html"
	window.location = url;
}

function gotoPage(ref) {
	window.location = ref;
}

function getThisYear() {
	var d = new Date();
	var year = d.getFullYear();
	return year;
}


