<!--
var on = "on";

if (document.images) {
	btn_cla = new Image(159,30);
	btn_cla.src = "images/btn_cla_1.gif";
	btn_claon = new Image(159,30);
	btn_claon.src = "images/btn_cla_2.gif";
	
	btn_locator = new Image(192,30);
    btn_locator.src = "images/btn_locator_1.gif";
	btn_locatoron = new Image(192,30);
    btn_locatoron.src = "images/btn_locator_2.gif";
	
	btn_tips = new Image(166,30);
	btn_tips.src = "images/btn_tips_1.gif";
	btn_tipson = new Image(166,30);
	btn_tipson.src = "images/btn_tips_2.gif";
	

	none="NONE";
	current_overID=none;
	selected_ID=none;
}

function imageswap(imgName) {
	if (document.images) {
		current_overID=imgName;
		if(current_overID != selected_ID){
			document[imgName].src = eval(imgName + "on.src");
		}
		return true;
	}
}

function imageoff(imgName) {
	if (document.images) {
		if(current_overID != selected_ID){
			document[imgName].src = eval(imgName + ".src");
		}
		current_overID=none;
		return true;
	}
}

function alloff() {
	if (document.images) {
		if(selected_ID != none){
			document.images[selected_ID].src = eval(selected_ID + ".src");
		}
		selected_ID=none;
		return true;
	}
}

function FreeShipping(ref){ 

var str="toolbar=no,status=no,menubar=no,location=no,scrollbars=yes,resizable=yes,height=600,width=500";

	//document.write(ref);

	tellaFriend = window.open(ref,"TellObj",str);

    tellaFriend.opener = top;

} 
//-->
