<!--
function popupform(myform, windowname)
{
if (! window.focus)return true;
window.open('', windowname, 'height=600,width=700,scrollbars=yes');
myform.target=windowname;
return true;
}

function abrir(pagina,nombre,ancho,alto) {
        ventana=window.open(pagina, nombre, "scrollbars,resizable,width="+ancho+",height="+alto+",top=10,left=10");
		ventana.focus();		
}

function abrir_sin_scroll(pagina,nombre,ancho,alto) {
        ventana=window.open(pagina, nombre, "scrollbars=no,resizable=no,width="+ancho+",height="+alto+",top=10,left=10");
		ventana.focus();		
}

function abrir_full(pagina) {
        //ventana=window.open(pagina, 'fullscreen', 'fullscreen, scrollbars');
		ventana=window.open(pagina, 'fullscreen', 'width=' + ((screen.availWidth/10) * 9) + ',height=' +  ((screen.availHeight)/14)*13  + ' ,left=' + (((screen.width/2)) - (((screen.availWidth/10) * 9)/2))  + ' ,top=0,scrollbars'); 								
		//window.open('login.aspx','fullscreen', 'fullscreen,scrollbars');
		ventana.focus();
}

function popupform(myform, windowname)
{
if (! window.focus)return true;
window.open('', windowname, 'height=600,width=700,scrollbars=yes');
myform.target=windowname;
return true;
}

function animacion(direccion,ancho,alto)
{
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+ancho+'" height="'+alto+'">');
document.write('<param name="movie" value="'+direccion+'" /><param name="wmode" value="transparent"><param name="menu" value="false" /><param name="quality" value="high" /><embed src="'+direccion+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false" value="transparent" wmode="transparent" width="'+ancho+'" height="'+alto+'"></embed></object>');
}
//-->