//----- ¹Ï¤ù®ÄªG -----
function highlightit(cur2){
	if (cur2.filters.alpha.opacity<100)
		cur2.filters.alpha.opacity+=15
	else if(window.highting)
		clearInterval(highlighting)
}
function picHigh(which2){
	theobject=which2;theobject.filters.alpha.opacity=0
	highlighting=setInterval("highlightit(theobject)",50)
}
function picLow(which2){
	clearInterval(highlighting)
	which2.filters.alpha.opacity=100
}
//----- made by bluezz ----
function setLink(url,subject,target){
	str ="<";
	str+="a";
	str+=" hr";
	str+="ef=";
	if(target){
		document.write(str + "\""+ url +"\" target=\""+ target +"\" ref=\"nofollow\">"+ subject +"</" + "a>");
	}else{
		document.write(str + "\""+ url +"\" ref=\"nofollow\">"+ subject +"</" + "a>");
	}
}

function setLink_r(url,subject,target){
	var tmp='';
	for(i=url.length;i>0;i--){
		tmp +=url.substring(i-1,i);
	}
	url=tmp;
	str ="<";
	str+="a";
	str+=" hr";
	str+="ef=";
	if(target){
		document.write(str + "\""+ url +"\" target=\""+ target +"\" ref=\"nofollow\">"+ subject +"</" + "a>");
	}else{
		document.write(str + "\""+ url +"\" ref=\"nofollow\">"+ subject +"</" + "a>");
	}
}

function str_r(url){
	var tmp='';
	for(i=url.length;i>0;i--){
		tmp +=url.substring(i-1,i);
	}
	url=tmp;
	document.write(url);
}