function popUp(url,name,width,height) {
   var properties = "toolbar = 0, location = 0, height = " + height;
   properties = properties + ", width=" + width;
   popupHandle = open(url,name,properties);
}

