function setSubmitLangBut(lang_id)
{
//	alert(lang_id)
	var bn_send = document.getElementById("send");
	if (null == bn_send) {
	    return;
	}
	switch(lang_id)
	{ 
	  	case 2: 
    		bn_send.value = 'Mande los comentarios';
		    break; 
	  	case 3: 
    		bn_send.value = 'Schicken Sie Bemerkungen';
		    break; 
	  	case 4: 
    		bn_send.value = 'Envoyer des commentaires';
		    break; 
	  	case 6: 
    		bn_send.value = 'Inviare i commenti';
		    break; 
		default: 
        	bn_send.value = 'Send comments';
	 }
}


function seeOther(val)
{
	if (val == -1)
		showDiv('sp_otherCountry')		
	else
		hideDiv('sp_otherCountry')
}

function hideDiv(divid)
{
	document.getElementById(divid).style.display = 'none';
}

function showDiv(divid) 
{
	document.getElementById(divid).style.display = '';
}