function goToCustomerSite(url) 
{  
	if(url.indexOf("http://") == -1)
		url = "http://"+url;
	
	window.open(url,"CustomerSite");
	//location.replace(url);
}