// OPTION TO DISPLAY LINKS

function mover(src){ 

	src.style.cursor = 'pointer'; 
	src.style.cursor = 'hand'; 
//	src.fgColor = 'green';
	
}

function mout(src){ 

	src.style.cursor = 'normal'; 
//	src.fgColor = 'green';
	
}

function optionOver (src, imgSrc) {
	
	src.style.cursor = 'pointer';
	src.style.cursor = 'hand';
	src.bgColor = "#0080A7";
	imgSrc.src = "/images/paw_li.gif";
	
}

function optionOut (src, imgSrc) {

	src.style.cursor = 'default'; 
	src.bgColor = "#003878";
	imgSrc.src = "/images/clear.gif";

}

function openAd (pageName, wi, hi) {

	adWin = window.open(pageName, "", "width=" + wi + ", height=" + hi + ", top=30, left=30, location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=yes");
	
}
