	function changeImg(o,u) {
		if (o && o.src) o.src=u;
	}
	function setBGColor(obj,c) {
		if (obj && obj.style)
			obj.style.backgroundColor=c;
	}
	function setTextColor(obj,c) {
		if (obj && obj.style)
			obj.style.color=c;
	}
	function menuOver(obj) {
		setBGColor(obj,"#ddeeff");
		setTextColor(obj,"black");
	}
	function menuOut(obj) {
		setBGColor(obj,"");
		setTextColor(obj,"white");
	}
	function showPanel(objID) {
		setPanel(objID,"block");
	}
	function hidePanel(objID) {
		setPanel(objID,"none");
	}
	function autoPanel(objID) {
		var obj=getObj(objID);
		if (obj && obj.style) {
			if (obj.style.display=="none")
				obj.style.display="block";
			else	obj.style.display="none";
			setCookie(objID,obj.style.display);
		}
	}
	function setPanel(objID,d) {
		var obj=getObj(objID);
		if (!d || d=="") d="block";
		if (obj && obj.style) {
			obj.style.display=d;
			setCookie(objID,d);
		}
	}
	function queryToArray(query) {
		var i,a,b,c;
		a=query.split(";");
		c=null;
		if (a.length>0 && a[0].length>0) {
			c=new Array;
			for (i=0;i<a.length;i++) {
				b=a[i].split(":");
				c[b[0]]=b[1];
			}
		}
		return c;
	}

	function goURL(src) {
		window.location=src;
	}
	function frameURL(src) {
		parent.document.frames['product_main'].location=src;
	}
	function setTitle(t) {
		top.document.title=t+" ¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@¡@";
	}
	function popup(u,t,w,h,x,y) {
		var param="location=no,menubar=no,titlebar=no,resizable=yes,scrollbars=yes,toolbar=no,help=no,resizable=yes,status=no";
		if (w) param+=",width="+w;
		if (h) param+=",height="+h;
		if (x) param+=",left="+x;
		if (y) param+=",top="+y;
		return window.open(u,''+t,param);
	}