function popcard(card){
var img= "http://www.fantasycommunity.com/public/forum222/spoiler/"+ card.toLowerCase() + ".jpg";
foto1= new Image();
foto1.src=(img);
Controlla(img);
}

function Controlla(img){
if((foto1.width!=0)&&(foto1.height!=0)){
viewFoto(img);
}
else{
funzione="Controlla(’"+img+"’)";
intervallo=setTimeout(funzione,100);
}
}

function viewFoto(img){
largh=foto1.width+20;
altez=foto1.height+25;
stringa="topmargin=0,leftmargin=0,toolbar=no,status=no,menubar=no,location=no,scrollbars=no,resizable=yes,width="+largh+",height="+altez+"";
finestra=window.open(img,"",stringa);
}