/*--------------------------------------------------------------------------
Version             3.0
Generierungsdatum:  05.09
description    Sammlung für igmetall
-----------------------------------------------------------------------------*/
function openPopup(Url)
{
    intZufall = Math.ceil(Math.random() * 1000) % 10000 + 1;
    strPopname = "Popup"+intZufall;
    w =eval('open("'+Url+'","'+strPopname+'","height=700,width=700,menubar=no,location=no,resizable=yes,status=no,toolbar=no,scrollbars=yes")');
    w.focus();
}
/*-----------------------------------------------------------------------------*/
function popup(Url)
{
    intZufall = Math.ceil(Math.random() * 1000) % 10000 + 1;
    strPopname = "Popup"+intZufall;
    w =eval('open("'+Url+'","'+strPopname+'","height=700,width=700,menubar=no,location=no,resizable=yes,status=no,toolbar=no,scrollbars=yes")');
    w.focus();
}
/*-----------------------------------------------------------------------------*/
function openPopup_02(Url,breite,hoehe)
{
    intZufall = Math.ceil(Math.random() * 1000) % 10000 + 1;
    strPopname = "Popup"+intZufall;
    w =eval('open("'+Url+'","'+strPopname+'","height='+hoehe+',width='+breite+',menubar=no,location=no,resizable=yes,status=no,toolbar=no,scrollbars=yes")');
    w.focus();
}
