function ChangeImage(id, src)
{ 
	document.getElementById(id).src=src;
	return 1; 
} 

function ProtectEmail(name, address, display)
{
        var link = name + "@" + address
        if(!display) { display = link; }
        document.write("<a href='mailto:" + link + "'>" + display + "</a>");
}


function areYouSure()
{
 	if ( confirm("Are you sure you want to clear the contents of this form?") )
	   return true;
	else
	   return false;
}



		
function preload($url)
{
	$img = new Image;
	$img.src=$url;
}

preload("i/btn_home_off.gif");
preload("i/btn_home_on.gif");

preload("i/btn_order_off.gif");
preload("i/btn_order_on.gif");

preload("i/btn_release_off.gif");
preload("i/btn_release_on.gif");

preload("i/btn_mlist_off.gif");
preload("i/btn_mlist_on.gif");

preload("i/btn_contact_off.gif");
preload("i/btn_contact_on.gif");

preload("i/btn_tnotes_off.gif");
preload("i/btn_tnotes_on.gif");

preload("i/btn_reviews_off.gif");
preload("i/btn_reviews_on.gif");

preload("i/arw.gif");

function show($obj, $url)
{
	$obj.src=$url;
}

