function QMOpenUp(sURL)
{
	params='height=325,width=600,status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes';
	winname='Quote_Window';
	window.open(sURL,winname,params,false);
}

//function to turn images on.
function imgOn (img1) {
	if (document.images) {
		document [img1].src = eval (img1 + "on.src");
	}
}
	
//function to turn images off.
function imgOff (img1) {
	if (document.images) {
		document [img1].src = eval (img1 + "off.src");
	}
}
	
if (document.images) {
	
	
img1on = new Image (56,18);
img1on.src = "/siteart/home_small1.gif";
img2on = new Image (68,18);
img2on.src = "/siteart/register_small1.gif";
img3on = new Image (87,18);
img3on.src = "/siteart/contact_small1.gif";
img4on = new Image (106,18);
img4on.src = "/siteart/instant_small1.gif";
	
img1off = new Image (56,18);
img1off.src = "/siteart/home_small.gif";
img2off = new Image (68,18);
img2off.src = "/siteart/register_small.gif";
img3off = new Image (87,18);
img3off.src = "/siteart/contact_small.gif";
img4off = new Image (106,18);
img4off.src = "/siteart/instant_small.gif";
	
//Add additional images here.
	
}

