/* ///////////////////////////////////////////// PRINT POPUP*/

function popprint (id) { //v2.0
windowWidth = 750;
windowHeight = 400;

winleft=(screen.width/2)-(windowWidth/2+10);
wintop=(screen.height/2)-(windowHeight/2+20);
window.open('PopPrint.asp?idSub='+id , 'popprint', 'left='+winleft+',top='+wintop+',scrollbars=yes,width=750,height=400');
}
function swap(img, thumb){
str = thumb;
thumb = thumb+'thumb';
var d = document.getElementById('principal');
var t = document.getElementById(thumb);
var aux;
aux = t.src;
aux = aux.replace('t_', 'g_');

t.src = document.getElementById('principal').src.replace('g_', 't_');
d.src = aux;
auxTit = titFotos[0];
titFotos[0] = titFotos[str];
titFotos[str] = auxTit;
document.getElementById("titF").innerHTML = titFotos[0];

auxText = txtFotos[0];
txtFotos[0] = txtFotos[str];
txtFotos[str] = auxText;
document.getElementById("desc").innerHTML = txtFotos[0];
}