	
	// 100707 sb	
	function GoWarrantyRegistration( mySelectedCountry, siteName ) {
		
		if ( mySelectedCountry == siteName ) {			
			return (true);
		}				
		if ( mySelectedCountry == 'bius' ) {			
			Aggwin = window.open('http://www.bogenimaging.us/Jahia/warrantyRegistration/cache/off/site/bius?step=userRegistration');
			return (false);
		}
		if ( mySelectedCountry == 'bifr' ) {
			Aggwin = window.open('http://www.bogenimaging.fr/Jahia/warrantyRegistration/cache/off/site/bifr?step=userRegistration');
			return (false);
		}
		if ( mySelectedCountry == 'bide' ) {
			Aggwin = window.open('http://www.bogenimaging.de/Jahia/warrantyRegistration/cache/off/site/bide?step=userRegistration');
			return (false);
		}
		if ( mySelectedCountry == 'biit' ) {
			Aggwin = window.open('http://www.bogenimaging.it/Jahia/warrantyRegistration/cache/off/site/biit?step=userRegistration');
			return (false);
		}
		if ( mySelectedCountry == 'bijp' ) {
			Aggwin = window.open('http://www.bogenimaging.jp/Jahia/warrantyRegistration/cache/off/site/bijp?step=userRegistration');
			return (false);
		}
		if ( mySelectedCountry == 'biuk' ) {
			Aggwin = window.open('http://www.bogenimaging.co.uk/Jahia/warrantyRegistration/cache/off/site/biuk?step=userRegistration');
			return (false);
		}
	
		
		// messaggio in lingua a seconda del sito su cui ci si trova
		
		switch (siteName)
		{
			case 'bius' :
				Mess = 'If your Country is not present you should register your product through the Manufacturer Official Web Site.';
			break;
			
			case 'bifr' :
				Mess = 'If your Country is not present you should register your product through the Manufacturer Official Web Site.';
			break;
			
			case 'bide' :
				Mess = 'If your Country is not present you should register your product through the Manufacturer Official Web Site.';
			break;
			
			case 'biit' :
				Mess = 'Se il tuo paese non è presente puoi registrare il tuo prodotto sul sito ufficiale del costruttore.';
			break;
			
			case 'bijp' :
				Mess = 'If your Country is not present you should register your product through the Manufacturer Official Web Site.';
			break;
			
			case 'biuk' :
				Mess = 'If your Country is not present you should register your product through the Manufacturer Official Web Site.';
			break;
			
			default :
				Mess = 'If your Country is not present you should register your product through the Manufacturer Official Web Site.';
		}	
		alert( Mess );
		
		return (false);
	}
	
	
