﻿// JScript File
var popUpSource = 0;
function  PopUpManagerSource(){}
PopUpManagerSource.FlashMenu_Button = 5;
PopUpManagerSource.FlashMenu_Movie  = 6;

function OpenPopUpWindow(path,width,height,title)
{
    if(!title){title = "";}    
    var newWindow = window.open(path ,title,'height=' + height + ',width=' + width +',center=yes,scrollbars=yes,dialogHelp=no,titlebar=no',true);            
    newWindow.focus();        
    return newWindow;
}
