function boton(name){
	idboton=eval("document.bot"+name);
	fotboton="../imgs/bot"+name+"on.gif";
	idboton.src=fotboton;
}

function botoff(name){
	idboton=eval("document.bot"+name);
	fotboton="../imgs/bot"+name+"off.gif";
	idboton.src=fotboton;

}
function foto(img){
	if (img != ""){
		parent.document.fot.src=img;
        parent.document.getElementById('tagID').style.border = '1px solid #365951';
	}else{
		parent.document.fot.src="imgs/transparente.gif";
		 document.getElementById('recuadro').style.border = '0px solid #FFFFFF';
	}
}

function ventana(archivo) {
var iMyWidth;
	var iMyHeight;
	iMyWidth = (window.screen.width/2) - (790/2 + 10); 
	iMyHeight = (window.screen.height/2) - (580/2 + 40);
	var win2 = window.open(archivo,"","height="+580+",width="+790+",resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=auto,resizable=no");
	win2.focus();
}
