// JavaScript Document
function destination(name,x) {
  var domain='danzaplanetaria';
  if (x==1) document.write('<input type="hidden" name="recipient" value="'+name+'@'+domain+'.com">');
    else
  document.write('<a href="mailto:info@'+domain+'.com">info@'+domain+'.com</a>');
}
Hmove=-250;
function moveObjRight(obj) 
{    
   	obj.style.left=Hmove;
   	obj.style.top=Hmove;
   	Hmove+=8;
   	if(Hmove<1000)
   	  	window.setTimeout("moveObjRight(" +obj.id+ ");", 0);
}

