var basquet = null;
function abrir_ventana(which,sx,sy){
	
	var posx=10;
	var posy=10;
		
	if (basquet != null && !basquet.closed) basquet.close();
	
	basquet = window.open(which,'fichabasquet','resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,width='+sx+',height='+sy+',screenX='+posx+',screenY='+posy+',left='+posx+',top='+posy+'');
		
	basquet.focus();
	
}


var fotos = null;
function abrir_fotografias(which,sx,sy){
	
	var posx=10;
	var posy=10;
		
	if (fotos != null && !fotos.closed) fotos.close();
	
	fotos = window.open(which,'fichafotos','resizable=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,width='+sx+',height='+sy+',screenX='+posx+',screenY='+posy+',left='+posx+',top='+posy+'');
		
	fotos.focus();
	
}
