function openPopup(url,width,height)
 {
 windowprops = "top=50,left=50,resizable=yes,scrollbars=1"+ ",width=" + 
width + ",height=" + height;
 window.open(url, "popupPage", windowprops);
 }
