function makeWin(url) { // EXAMPLE = <a href="javascript:makeWin('http://www.mysite.com');"
	
	      agent = navigator.userAgent;
	      windowName = "Sitelet";
	      params  = "";
	      params += "toolbar=0,";
	      params += "location=0,";
	      params += "directories=0,";
	      params += "status=0,";
	      params += "menubar=0,";
	      params += "scrollbars=1,";
	      params += "resizable=1,";
	      params += "width=350,";
	      params += "height=260";
	   
		  // close the window to vary the window size
	   	  if (typeof(win) == "object" && !win.closed){
            win.close();
	      }
	   
	      win = window.open(url, windowName , params);
	
	      if (agent.indexOf("Mozilla/2") != -1 && agent.indexOf("Win") == -1) {
	          win = window.open(url, windowName , params);
	      }
	
	      if (!win.opener) {
	          win.opener = window;
	      }
	
  		  // bring the window to the front
		  win.focus();
	  }
	  
	  function makeWin2(url, p_Width, p_Height) { // EXAMPLE = <a href="javascript:makeWin2('http://www.gcaii.com/policies1.htm', 558, 420);"></a>
	
	      agent = navigator.userAgent;
	      windowName = "GCA";
	      params  = "";
	      params += "toolbar=0,";
	      params += "location=0,";
	      params += "directories=0,";
	      params += "status=0,";
	      params += "menubar=0,";
	      params += "scrollbars=0,";
	      params += "resizable=1,";
	      params += "top=92,";
	      params += "left=75,";
	      if (p_Width == "null") {
			params += "width=500,";
	        params += "height=350";
	      }
		  else {
			params += "width=" + p_Width+ ",";
	        params += "height=" + p_Height;
	      }

		  // close the window to vary the window size
	   	  if (typeof(win) == "object" && !win.closed){
            win.close();
	      }
	   
	      win = window.open(url, windowName , params);

	      if (agent.indexOf("Mozilla/2") != -1 && agent.indexOf("Win") == -1) {
	          win = window.open(url, windowName , params);
	      }
	
	      if (!win.opener) {
	          win.opener = window;
	      }
	
		  // bring the window to the front
		  win.focus();	
	  }