<!--

ie4 = (document.all)? true:false ;
ns4 = (document.layers)? true:false ;
ns6 = (!document.layers && !document.all && parseFloat(navigator.appVersion) >=5 )? true:false ;

//************************************************************************************************

function init()
{

}

//************************************************************************************************


function changeColor(action,object)
{
	if(ie4)
	{
		color = (action == 1)? "#f9f9f9" : "#ffffff" ;
		border = (action == 1)? "1 #003399 solid" : "1 #000000 solid" ;

		object.style.border = border;
		object.style.backgroundColor = color;
	}
}

//************************************************************************************************

var photo = false;

function showBigPhoto(img,w,h)
{
	if(photo){photo.close();}

	w = w + 30;
	h = h + 30;
	
	c = 'toolbar=0, menubar=0, location=0, personalbar=0, status=0, resizable=0, scrollbars=0, directories=0,';
	c += ' height='+h+', width='+w;
	photo = window.open('','photo',c);
	
	w = '<html><title>Galeria</title><body leftmargin="10" topmargin="10" rightmargin="10" bottommargin="10"><table width="100%" height="100%">';
	w += '<tr><td align="center" valign="middle"><img src='+img+' border="0"></td></tr></table></body></html>';

	photo.document.open();
	photo.document.write(w);
	photo.document.close();
	
}

//-->