$glb_int_ScreenWidth = screen.width; // era $screen_width
$glb_int_ScreenHeight = screen.height; // era $screen_height

if (($glb_int_ScreenWidth < 900))
{ // 800 * 600 o menos (que lo va a ver grande)
    $glb_int_IntroWindowWidth = 800;
    $glb_int_IntroWindowHeight = 600;
    $resize = '?resize2=87%';
}
else
{
    if (($glb_int_ScreenWidth < 1200))
    { // 1024 * 768
        $glb_int_IntroWindowWidth = 1024;
        $glb_int_IntroWindowHeight = 768;
        $resize = '?resize2=87%';
    }
    else
    { // tamaño "baño" (no lo armo para más grande porque van a empezar a perder calidad las imágenes)
        $glb_int_IntroWindowWidth = 1200;
        $glb_int_IntroWindowHeight = 900;
        $resize='';
    }
}
