function PopupWindow(strFile,Width,Height)
   {  var iTop = 50;
     
	  var iWidth = Width;
	  var iHeight = Height;
	  var iLeft = screen.width - iWidth - 200;
		
      var newWindow = window.open(strFile, 'newWindow','width=' + iWidth + ',height=' + iHeight + ',menubar=no,scrollbars=yes,toolbar=no,location=no,directories=no,resizable=no,top=' + iTop + ',left=' + iLeft); 
		newWindow.focus();
   }

