/*************************************************************/
/*************************************************************/

function getObject(objID)
{
	if (document.all)
	{
		var obj = document.all[objID];
	}
	else if (document.getElementById)
	{
		var obj = document.getElementById(objID);
	}
return obj;
}
function doVerDetalle(bidUrka)
{	
	var rtn = true;
	var obj = getObject('p.'+bidUrka);
	if (obj != null) {
		if(obj.style.overflow == "visible"){
			obj.style.display = "none";
			obj.style.overflow = "";
		}else{
			urk=bidUrka;
			bidUrk='p.'+bidUrka;
			if(showObject(bidUrk)) {			
				rtn = false;
				showObject(bidUrk);
			}
		}
	}
}



/**************************************/
/*     FUNCION PARA VER LA GALERIA    */
/**************************************/


function doVerGaleria(bidUrka)
{	
	var numgalerias=1;
	while (numgalerias<5){//numero de galerias -1
		var rtn = true;
		var obj = getObject('p.Galeria'+numgalerias);
		if (obj != null) {
			obj.style.display = "none";
			obj.style.overflow = "";
		}
		numgalerias++;
	}
	urk=bidUrka;
	bidUrk='p.'+bidUrka;
	if(showObject(bidUrk)) {			
		rtn = false;
		showObject(bidUrk);
	}
}


function showObject(objID)
{
var obj = getObject(objID);
var rtn = false;
	if (obj != null) {
		obj.style.display = "inline";
		obj.style.position = "static";
		obj.style.width = "auto";
		obj.style.height = "auto";
		obj.style.overflow = "visible";
		rtn = true;
	}
}




