var nytWin2 = null;

function bigPic( url ) {
    if ( nytWin2 && !nytWin2.closed ) {  // hvis vinduet allerede er der
        nytWin2.location.href = url;    // ny side til eksisterende vindue
        if ( nytWin2.focus ) nytWin2.focus();  // hiver det existerende vindue op foran
           } else {
        nytWin2 = window.open( url, "BigPic", "location=no,menubar=no,toolbar=no,resizable=no,scrollbars=no" + ",height=477,width=602");
		
    }
};
