// Javascript - Display popup window

  function showPopUp(url,winName, w, h,sbar,resize) {
		
		if (resize == undefined) {resize = 0;}
		
    if (h == 0){
			h = screen.height -300;
			if (h < 1) {h = screen.height;}
		}
		 
		var options = "width=" + w + ",height=" + h + ",";
				options += "scrollbars=" + sbar + ",";
				options += "resizable=" + resize + ",";
				options += "status=1,menubar=0,toolbar=0,location=0,directories=0";		
    
		var newWin = window.open(url, winName, options);

    newWin.focus();
  }

