function openExternalPopup(e){	if(e){Event.stop(e);}	//destinazione = $$('#a_conditions')[0].getAttribute('href');	destinazione = Event.element(e).getAttribute('href');	altezza=(screen.height-600)/2;	larghezza=(screen.width-700)/2;	window.open(destinazione, 'name', "height=600, width=700, left="+larghezza+", top="+altezza+", resizable=no, scrollbars=yes, menubar=no, toolbar=no, directories=no, location=no, status=no");}//openExternalPopupfunction toggleBox(e){	Event.stop(e);	elt=Event.element(e);	$(elt.id.replace('a_', 'box_')).toggle();}//toggleBoxfunction baseInit(){	if(supersleight){supersleight.init();}	if($$('.a_conditions').length){		$$('.a_conditions').each(function(elt){			Event.observe(elt, 'click', openExternalPopup);		});	}	cerca_rollover();	if($('login_form')){		Event.observe('login_form', 'submit', checkFormFeedback);		Event.observe('forgot_form', 'submit', checkFormFeedback);		Event.observe('confirm_form', 'submit', checkFormFeedback);		Event.observe('a_forgot_password', 'click', toggleBox);		Event.observe('a_confirm_email', 'click', toggleBox);	}}//baseInit