function open_pict(id,inwidth,inheight)
{

     pict_width=inwidth;
     pict_height=inheight;

     url="show_picture.php?id="+id;
     width=(screen.width/2)-220;
     info="width=440,height=329,top=200,left="+width;

     width=(screen.width/2)-pict_width/2;
     height=(screen.height/2)-pict_height/2-20;
     info="width="+pict_width+",height="+pict_height+",top="+height+",left="+width;
     window.open(url,id,info);
}

function open_mapa()
{
     var str_buffer = new String ("<html><head></head><body topmargin='0' leftmargin='0'><img src='images/mapa.gif' onclick='window.close();' style='cursor: pointer;'></body></body>");

	var vWmapa = window.open("", "Mapa", "width=438,height=358,status=no,resizable=yes,top=300,left=400");
	var mapa_doc = vWmapa.document;
	mapa_doc.write (str_buffer);
	mapa_doc.close();
}



function fnGetObject(sId) {
	if (document.all) 
		return document.all(sId)
	else if (document.getElementById) 
		return document.getElementById(sId)
	else if (document.layers) 
		return document.layers[sId]
	else
		return false;
}

function change_display() {
    for (var i=0; i < change_display.arguments.length; i++)
    {
        var elemID = change_display.arguments[i];
        var oDiv = fnGetObject(elemID);   
        oDiv.style.display = (oDiv.style.display=='none')?('inline'):('none');
    }
} 
