// JavaScript Document
	function clickhandler (e)
	{
		e = (e == null) ? event : e;
		var from = e.target ? e.target : e.srcElement; 

		if ((from.tagName == "IMG"))
			return false;
		return true;
	}

img=new Image();
img.src='/images/MenuLeft_Orange.gif';

function CngBG(obj,nc){
 obj.nc=obj.className;
 obj.className=nc;
 obj.onmouseout=function(){ this.className=this.nc; }
}

function GoToPage(theUrl)
  {
    document.location.href = theUrl;
  }