﻿// JScript File
var imageWindow;
function openPopup(url,name,width,height){
            if(!imageWindow||imageWindow.closed){
            imageWindow=window.open(url,name,'height='+height+',width='+width);
            imageWindow.status=0;
            imageWindow.menubar=0;
            imageWindow.toolbar=0;
            }else{
            imageWindow.focus();
            }
            return false;
}
function confirmBox(messageText){
    var response;
    response=confirm(messageText)
    if(response!=0){
    return true;
    }else{
    return false;
    }
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}