// JavaScript Document

function show_cuadro(modulo,posicionx,posiciony){
document.getElementById(modulo).style.display='block';
document.getElementById(modulo).style.bottom=posicionx+'px';
document.getElementById(modulo).style.right=posiciony+'px';
}


function hide_cuadro(modulo){
document.getElementById(modulo).style.display='none';
}

function copia_portapapeles(campo){ 
   document.form.url_code.select() 
   window.clipboardData.setData("Text", document.form.url_code.value); 
   hide_cuadro('link_cuadro');
} 

