function showCursor(currentid) 
{
	//var row='row' + currentid;
	if (document.layers){
		var two=document.currentid;
    } else 
		if(document.all){ 
			var two=document.all(currentid)
		} else 
			if (document.getElementById){
				var two=document.getElementById(currentid);
			}
	two.style.color="yellow";
	two.style.cursor='hand';
}

function hideCursor(currentid) 
{
	if (document.layers){
		var two=document.currentid;
    } else 
		if(document.all){ 
			var two=document.all(currentid)
		} else 
			if (document.getElementById){
				var two=document.getElementById(currentid);
			}
	two.style.color="white";
	two.style.cursor='default';
}

function fnHide(){
	if (document.layers){
		var step1=document.im1;
		var step3=document.im3;
		var HIDDEN='hide';
		var VISIBLE='show';
    } else 
		if(document.all){ 
			var step1=document.all("im1").style;
			var step3=document.all("im3").style;
			var HIDDEN='hidden';
			var VISIBLE='visible';
		} else 
			if (document.getElementById){
			var step1=document.getElementById("im1").style;
			var step3=document.getElementById("im3").style;
			var HIDDEN='hidden';
			var VISIBLE='visible';
			}
	
	if (imgQuote =="1"){
			document.all("im1").style.visibility="hidden"
			document.all("im3").style.visibility="visible";
			imgQuote="3";
		}
		else
			if (imgQuote=="3"){
				document.all("im3").style.visibility="hidden"
				document.all("im1").style.visibility="visible";
				imgQuote="1";
			}
	}