/*****************************************************************
Get Flash Object
*****************************************************************/
function getFlashMovie(movieName) {
       if (navigator.appName.indexOf("Microsoft") != -1) {
           return window[movieName];
       } else {
           return document[movieName];
       }
   }

/*****************************************************************
Javascript Popup
*****************************************************************/
function popUp(p_URL, p_Width, p_Height, p_CanScroll, p_Resizable, p_Menubar) {
newWindow = window.open(p_URL, '__', 'toolbar=0,location=0,directories=0,status=0,menubar='+ p_Menubar + ',scrollbars='+ p_CanScroll + ',resizable='+ p_Resizable + ',width=' + p_Width + ',height=' + p_Height );
// <A HREF="javascript:popUp('sample.html', 400, 400)">Open the Popup Window</A>
}