// el popup normal
function poponload(pasgina)
{
 eje_x=(screen.width / 2) - 450;
 eje_y=222;
pop_bio= window.open (pasgina, "banner_cadenas",
    "toolbar=0,menubar=0,location=0,status=0,scrollbars=0,resizable=0,width=330,height=210");
pop_bio.moveTo(eje_x,eje_y);
}
// el popup del popup... para firefox (menudos chapuceros los de mozilla)
function poppoponload(paxgina)
{
	//anchuras= screen.height;
	//alturas= screen.width;
bio_external= window.open (paxgina, "externalwindow",
    "toolbar=1, location=1, directories=1, status=1, menubar=1, scrollbars=1, resizable=1, width=anchuras, height=alturas");
bio_external.moveTo(0,0);
}