function goToPrenotazioneCNS()
{
	var sHost = window.location.host;
	var nProtocol = "https://";
	if (sHost.indexOf("bkeysv") != -1) {
    	sHost = "carnsv.intra.infocamere.it/carpweb/default.do";
    } 
	if (sHost.indexOf("bkeyts") != -1){
		sHost = "carnts.intra.infocamere.it/carpweb/default.do";
    } 
	if (sHost.indexOf("www.businesskey.it") != -1){
		sHost = "carn.infocamere.it/carpweb/default.do";			
    } 
	var newurl = nProtocol + sHost;
	
	alert(newurl);
	
	window.open(newurl,'prenotazione','width=580,height=540,scrollbars=yes,toolbar=no,resizable=1,menubar=no');

}


