// JavaScript Document
function uppdateraDiv(id,url) {  
  new Ajax.Updater(id,url,{
	asynchronous:true, 
	evalScripts:true, 
	onLoading:function(request){
		Element.addClassName(id,'loading');
	}
  });    
} 

function submitform(id, url)
{    
  new Ajax.Updater(id,url,{asynchronous:true, parameters:{email: $F('email') } });  
}


	
