/***
 * Fonctions des formulaires :
***/
// Vars --------------------------//
urls = Array(
	"annonces-sexy.love.easyrencontre.com",
	"annonces-sexy.sexy.easyrencontre.com",
	"annonces-sexy.gay.easyrencontre.com"
);

// Formulaires --------------------//
tzosob = new Date();
var tzos = ( tzosob.getTimezoneOffset()/60 );
function chAction(formId, obj)
{
	if( obj.tagName == 'INPUT' )
	{
		if( !obj.checked ) return;
	}
	else if( !obj.value.length ) return;
	
	document.getElementById( formId ).action = 'http://' + urls[obj.value];
}
