function GoToURL(urlPath,thirdParty)
{
randm(urlPath);
   if((aff > 0) && (thirdParty.length < 1))
   {
	 var thirdParty = "humidipak";
   }	 
   	if(!urlPath) urlPath ="";
	if(!thirdParty)
	{
		eval("top.location.href='"+urlPath+rr+"'");
	} else {
		switch(thirdParty)
		{
			case "bank":
			    var	webServer = new String("https://bank.etrade.com");
				break;
			case "borrow":
				var webServer = new String("https://lending.etrade.com");
				break;
			case "borrow2":
				var webServer = new String("https://mortgage.etrade.com");
				break;				
			case "pmm":
				var webServer = new String("https://etpmm.etrade.com");
				break;
	     	case "etrade":
				var webServer = new String("https://us.etrade.com");	
				break;	
		   	case "bond":
				var webServer = new String("https://www.bonddesk.com");	
				break;	
		}
		if(urlPath=="" || urlPath.length <1){urlPath ="/";}
		eval("top.location.href='"+webServer+urlPath+rr+"'");
	}		
}	

