function displayPopup(url,name,height,width) {
var popupHandle;
var properties = "toolbar=0,location=0,scrollbars=yes,resizable=yes,top=5,left=5,height="+height
 properties = properties+",width="+width;
 popupHandle = open(url,name,properties);
}