function opacityOn(obj){
	obj.setAttribute("style", "opacity:1.0; height:69px; margin:5px 6px;");
	if(obj.style.setAttribute){//For IE
		obj.style.setAttribute("filter", "alpha(opacity=100);");
		obj.style.setAttribute("height", "69px");
		obj.style.setAttribute("margin", "5px 6px");
		obj.style.setAttribute("background", "none");
	}
}
function opacityOff(obj){
	obj.setAttribute("style", "opacity:0.6; height:69px; margin:5px 6px; background:#ffffff;");
	if(obj.style.setAttribute){//For IE
		obj.style.setAttribute("filter", "alpha(opacity=60)");
		obj.style.setAttribute("height", "69px");
		obj.style.setAttribute("margin", "5px 6px");
		obj.style.setAttribute("background", "#ffffff");
	}
}
function showGalleryPhoto(id,width,height){
	var url = document.getElementById('bigPhotoUrl').value;
	document.getElementById('bigPhotoId').value=id;
	document.getElementById('bigPhotoWidth').value=width;
	document.getElementById('bigPhotoHeight').value=height;
	document.getElementById('bigPhoto').style.backgroundImage='url("'+url+'get.php?i.'+id+':w.370:h.275")';
}
function writeFlash(movieLocation,width,height){
	document.write('<object id="flashmast" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+width+'" height="'+height+'"><param name="allowScriptAccess" value="sameDomain"><param name="movie" value="'+movieLocation+'"><param name="quality" value="high"><param name="wmode" value="transparent"><embed id="flashembed" src="'+movieLocation+'" quality="high" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" width="'+width+'" height="'+height+'"></embed></object>');
}
