

function openWindow(pageUrl, swfIdIn) {
    var winName = Math.round(9999 * Math.random()) + new Date().getTime();
    var winNew = window.open(pageUrl, winName, "toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,,,,");
    
    if (!winNew || winNew == undefined) {
        if( (swfIdIn)&&(swfIdIn != undefined) )
            document.getElementById(swfIdIn).openWindowFromSwf(pageUrl);
    } else
        winNew.focus();
}