/*
    Website of labia at www.labia.ch
    Copyright (C) by labia

    Created by Björn Steffen
*/

function doPic( img ) {
    foto = new Image();
    foto.src = img;
    control( img );
}

function control( img ) {
    if ( foto.width != 0 && foto.height != 0 ) {
        viewFoto( img );
    }
    else {
        func = "control('" + img + "')";
        interval = setTimeout( func, 20 );
    }
}

function viewFoto( img ) {
    width = foto.width + 30;
    height = foto.height + 47;
    options = "resizable=yes,dependent=yes,width=" + width + ",height=" + height;
    popup = window.open( img, "photoWindow", options );
    popup.resizeTo( width, height );
    popup.focus();
}

function doWindow( url ) {
    Popup = window.open( url + "", "photoWindow",
        "dependent=yes,height=500,width=430,resizable=yes" ) ;
    Popup.focus();
}
