<!--

function winOpen(address,w,h,scroll,target)
{
	if (w > screen.width)	w==screen.width;
	if (h > screen.height)	h==screen.height;
	var winl = (screen.width - w) / 2; 
	var wint = (screen.height - h) / 2; 
	window.open(address,target,"width=" + w + ",height=" + h + ",top=" + wint + ",left=" + winl + ",scrollbars=" + scroll + ",resizable=0");
}

function mouseOver(obj, bool, name)
{
	if(bool)
		obj.src="/image/" + name + obj.id + "_on.jpg";
	else
		obj.src="/image/" + name + obj.id + "_off.jpg";
}

//-->