//IMG POPUP
function popWin(img,wdth,hght) {
	
	specsstr = "'width=" + wdth + ",height=" + hght + ",toolbar=no,menubar=no,location=no,status=yes'";
	
	specs = eval(specsstr);
	
	window.open(img,'popup',specs);
}

function rlover(name,over)
{
	if(window.document.images) 
	{
		if (over)
			window.document.images[name].src = "images/btn_" + name + "_1.gif";
		else
			window.document.images[name].src =  "images/btn_" + name + "_0.gif";
	}
}