
// JavaScript Document

		function makeWin2(url, p_Width, p_Height) {
			params  = GetWindowOpenParams(92, 0, p_Width, p_Height);
			ProcessOpenWindow(url, "Sitelet", params, false);
		}
		
		function ProcessOpenWindow(url, windowName, params, noCaching)
		{
			agent = navigator.userAgent;
			try{
			// close the window to vary the window size
			if (typeof(win) == "object" && !win.closed){win.close();}
			}catch(e){}
			win = OpenWindow(url, windowName, params, noCaching);
			if (agent.indexOf("Mozilla/2") != -1 && agent.indexOf("Win") == -1) 
			win = OpenWindow(url, windowName, params, noCaching);
			try{
				if (!win.opener) {
					win.opener = window;
				}
			}catch(e){}
			// bring the window to the front
			try{
				win.focus();	
			}catch(e){}
		}
		
		function OpenWindow(url, windowName, params, noCaching)
		{
			if (noCaching == true)
				return window.open(url + '&nc=true', windowName , params);
			else
				return window.open(url, windowName , params);
		}
		
		function GetWindowOpenParams(top, left, width, height)
		{
			params = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,";
			params += "top=" + top + ",";
			params += "left=" + left + ",";
			if (width) {
				params += "width=" + width+ ",";
				params += "height=" + height;
			}
			else {
				params += "width=590,height=350";
			}
			return params;
		}
		//-->
	
