function findHosts() 
	{ 
		var URLhost;
		var URLRedirect;
		URLhost = window.location.host;

		switch(URLhost){
			case "www.geam.com":
				 URLRedirect = "http://www.gefunds.com";
				 
				 break;
			case "dr.geam.com":
				 URLRedirect = "http://dr.gefunds.com";
				  
				 break;
			case "staging.geam.com":
				 URLRedirect = "http://staging.gefunds.com";
				
				 break;
			case "geamext.geam.corporate.ge.com:9080":
				 URLRedirect = "http://geamstlxkant01d.geam.corporate.ge.com:9080";
				
				 break;
			case "localdev.geam.com":
				 URLRedirect = "localdev.gefunds.com";
			
				 break;

			default :
				 URLRedirect = "http://geamstlxkant01d.geam.corporate.ge.com:9080";
				
				 break;
		}
		return URLRedirect;
	}




			function fnOpenVideo(strURL)
			{
				var winOpts;
				var strURLS=findHosts();
				var str=strURLS+strURL;
				winOpts = 'left=150,top=140,width=660,height=500,';
				winOpts = winOpts + 'status=yes,menubar=no,resizable=no,scrollbars=no';
				
				
				newwin = window.open(str,"popWin",winOpts);
			}