﻿// JScript File

   function showPopup(strUrl, strCustomer) 
   {
    
//    alert(strCustomer);
//    debugger();
      var oNewWin = window.open("about:blank", "newwindow", "height=150,width=300,top=10,left=10,resizable=yes");

      oNewWin.document.open();
      oNewWin.document.write("<html><head><title>"+strCustomer+"</title></head>");
      oNewWin.document.write("<body style=\"font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; color:#666666;	font-weight:normal;	text-decoration: none;\">"+strUrl+"</body></html>");
      oNewWin.document.close();
   }

