/* window.addEvent('load', function(){ if ($('modalDemoLink')){ $('modalDemoLink').addEvent('click', function(e){ new Event(e).stop(); document.mochaUI.newWindow({ id: 'modalDemo', title: 'A Modal Window', content: 'Your modal window content', modal: true, width: 300, height: 150 }); }); } if ($('youtubeLink')) { $('youtubeLink').addEvent('click', function(e){ new Event(e).stop(); document.mochaUI.newWindow({ id: 'youTube', title: 'Video', loadMethod: 'iframe', contentURL: '/visores/youtube.php?url=' + e.target.href, width: 425, height: 355, scrollbars: false, paddingVertical: 0, paddingHorizontal: 0, bgColor: '#000' }); }); } if ($('lipsumLink')) { $('lipsumLink').addEvent('click', function(e){ new Event(e).stop(); document.mochaUI.newWindow({ id: 'nuevacomunidad', title: '¿Pertenecer a nueva comunidad?', loadMethod: 'xhr', contentURL: '/test/pregunta.php', width: 425, height: 200, scrollbars: false, paddingVertical: 0, paddingHorizontal: 0, bgColor: '#000' }); }); } if ($('email')) { $('email').addEvent('click', function(e){ new Event(e).stop(); if($('email').value == "Email"){ $('email').value = ""; } }); } if ($('clave')) { $('clave').addEvent('click', function(e){ new Event(e).stop(); if($('clave').value == "Contraseña"){ $('clave').value = ""; } }); $('clave').addEvent('focus', function(e){ new Event(e).stop(); if($('clave').value == "Contraseña"){ $('clave').value = ""; } }); } }); */