// Copyright (c) 2005 Emagine bvba. All rights reserved.

var emagiCdotNet_Window = new Object();
function emagiCdotNet_Popup(url) {
    emagiCdotNet_Window['popupWindow'] = window.open(url, "doc", "resizable=1,toolbar=0,border=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,copyhistory=0,width=600,height=400");
    setTimeout('setWindowFocus(emagiCdotNet_Window["popupWindow"])', 500);
}

function setWindowFocus(win) {
    try {win.focus()}
    catch(e) {}
}

function activateObject(myObjectSource) {
    try {document.write(myObjectSource)}
    catch(e) {}
}


