<!--
	function SwapImage(ImageName,ImageFile){
		Image1=new Image();
		Image1.src = ImageFile;
		document[ImageName].src = Image1.src; return true;
	}

	function openWindow(url, windowname, width, height) {
		option = 'resizable=yes,scrollbars,menubar=no,locationbar=no,width='+width+',height='+height;
		popupWin = window.open(url, windowname, option);
	}
	
	if (document.layers) { 
		window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP) 
		window.onmousedown=rightclick; 
		window.onmouseup=rightclick; 
		function rightclick(e) {
			if (e.which == 3) {
				return false; 
			} else { 
				return true; 
			} 
		} 
	} 
	
	if (document.all) { 
		function click() { 
			if (event.button==2) {return false; } 
			if (event.button==3) {return false; } 
			if (event.button==4) {return false; }
		} 
		document.onmousedown=click 
	} 



	function DoFalse(e)
	{
		if((document.all && event.ctrlKey == true) || (document.layers && e.modifiers == 2))
	 	{
	  		return false;
		}
	}
	
	if(document.layers)
	{
		document.captureEvents(Event.KEYPRESS);
		document.onKeyPress = DoFalse;
	}

	function disableSelection(target)
	{
		if (typeof target.onselectstart!="undefined")				//IE route
			target.onselectstart=function(){return false; }
		else if (typeof target.style.MozUserSelect!="undefined")	//Firefox route
			target.style.MozUserSelect="none";
		else														//All other route (ie: Opera)
			target.onmousedown=function(){return false; }
	}
//-->