// JavaScript Document

function imageOpen(id){
	window.open("galeriaWindow.php?id="+id,null, "height=300,width=300,status=no,toolbar=no,menubar=no,location=no"); 
}

function set_on(obj){
	obj.style.filter="Alpha(opacity=75, finishopacity=75, style=1)";
	obj.style.opacity = 0.8;
}

function set_off(obj){
	obj.style.filter="Alpha(opacity=100, finishopacity=100, style=1)";
	obj.style.opacity = 1;
}


