<!--

function setupimages(objname, location, imagenormal, imageover)
	{
		if (document.images)
	   	{
	    	eval(objname + "normal = new Image()");
	      	eval(objname + "normal.src = '" + location + imagenormal + "'");
		  	eval(objname + "over = new Image()");
	      	eval(objname + "over.src = '" + location + imageover + "'");
	  	}
	}
	
function imgover(imgname)
	{
	   if (document.images){document[imgname].src = eval(imgname + "over.src");}
	}
	
	function imgnormal(imgname)
	{
	   if (document.images){document[imgname].src = eval(imgname + "normal.src");}
	}
	
function openpcwindow() {
		window.open("http://www.petcarepoint.com/login.asp?id=1","pop","resizable=yes,toolbar=no,scrollbars=yes,menubar=no,width=800,height=300")
	}
//-->
