/* Define cuantas carpetas con diferentes imagenes hay para menus, partes derechas y partes izquierdas  */
max_menus=4;
max_der=10;
max_izq=10;

/* 
	Los skins van desde el 0 hasta max-1.                                                                    
	Para evitar la aparicion del maximo dentro del rango le restamos un numero infimo.
*/
skin_aleatorio_menu=Math.floor((Math.random()*max_menus)-0.0001);
skin_aleatorio_der=Math.floor((Math.random()*max_der)-0.0001);
skin_aleatorio_izq=Math.floor((Math.random()*max_izq)-0.0001);

/* 
	La funcion Skin es la que permite encapsular todos 
*/
function Skin(){		
}

function openNewWindow(URLtoOpen,windowName, windowFeatures) {
	newWindow=window.open(URLtoOpen, windowName, windowFeatures); }
	
function win_open(URLtoOpen){
	newWindow=window.open(URLtoOpen, "fseguridad", "scrollbars=no,toolbar=no,height=150,width=200,menubar=no,location=no"); }

