function openWindow_scroll(url,w,h) {
 window.open(url,'popup','width=' + w + ', height=' + h + ',scrollbars=1,resizable=0');
}	
	
function trim(string)
{
return string.replace(/(^\s*)|(\s*$)/g,'');
} 	

function toggle(elt){
	if (elt.value=="Type your email"){
		elt.value="";
	}
}
function restore(elt){
	if (elt.value==""){
		elt.value="Type your email";
	}
}
