function popup_fullscreen2(url,nombre,elscrol)
{
	var opciones='toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width='+screen.availWidth+', height='+screen.availHeight;
	w=window.open(url,nombre,opciones);
	w.moveTo(0,0);
	w.focus();	
	w.focus();
} 
