<!--

function anv(ww,w,h,a)
{
// ww- lo ancho de la ventana
//  w-Not used
//  h-Window height
//  a-Page URL

//	alert("Here");

	var win='menubar=0,toolbar=0,location=0,directories=0,scrollbars=1,resizable=1,width='+ww+',height='+h+',top=0,left=0';

//para usar con a-Page URL
	ventana = window.open(a,'ventana',win);

//para usar sin a-Page URL
//	ventana = window.open('','ventana',win);
//	ventana.document.write("<html><head><title>Title<\/title><\/head><body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'><object width='"+w+"' height='"+h+"'><param name='movie' value='"+a+"'></param><param name='wmode' value='transparent'></param><embed src='"+a+"' type='application/x-shockwave-flash' wmode='transparent' width='"+w+"' height='"+h+"'></embed></object><\/body><\/html>");

//	ventana.document.close();
	ventana.focus();
}

//-->
