<!--
var loaded = false;

if( document.images ){
	img01on = new Image();	img01on.src = "images/toc_products_on.gif";
	img02on = new Image();	img02on.src = "images/toc_place_order_on.gif";
	img03on = new Image();	img03on.src = "images/toc_customer_service_on.gif";
	img04on = new Image();	img04on.src = "images/toc_about_cfm_on.gif";
	img05on = new Image();	img05on.src = "images/toc_dealer_info_on.gif";
			
	img01off = new Image();	img01off.src = "images/toc_products.gif";
	img02off = new Image();	img02off.src = "images/toc_place_order.gif";
	img03off = new Image();	img03off.src = "images/toc_customer_service.gif";
	img04off = new Image();	img04off.src = "images/toc_about_cfm.gif";
	img05off = new Image();	img05off.src = "images/toc_dealer_info.gif";
}

function imgOn( imgName ){
	if( loaded == false ) return;
	if( document.images ){
		document[imgName].src = eval (imgName + "on.src");
	}
}

function imgOff( imgName ){
	if( loaded == false ) return;
	if( document.images ){
		document[imgName].src = eval (imgName + "off.src");
	}
}

function goto_shortcut(which){
	if( which == "" ) return;
	document.location = which;
}

function pop_up(url,name,height,width){
	var style = "scrollbars=yes,menubar=yes";
	window.open(url,name,style);
}

function setup(){
	loaded = true;
}

window.onload = setup
//-->