function fnSetOn(selObj){
	selObj.style.backgroundColor = "#f5f5f5";
}

function fnSetOff(selObj){
	selObj.style.backgroundColor = "#dbdbdb";
}

function fnRenderClient(){
	if(navigator.appName == "Netscape"){
		selObj = document.getElementById("adContent");
		selObj.width = "161";
	}
	
	var UA = navigator.userAgent;
	if(UA.indexOf("Safari") != -1){
		var OS = navigator.vendor; 
		if(OS.indexOf("Apple") != -1){
		alert("test")
			selObj = document.getElementById("adContent");
			selObj.width = "162";
		}
	}
}

function fnShowArt(imgName,w,h){
	args = "width="+w+",height="+h+",scrollbars=no"
	imgURI = "site_popimg.php?i="+imgName;
	window.open(imgURI,"popwin",args)
}

function fnReqArt(artref,artname){
	args = "width=500,height=450,scrollbars=no"
	imgURI = "site_artreq.php?ref="+artref+"&name="+artname;
	window.open(imgURI,"popwin",args)
}
