////////////////////////////////////////////////////////////////////////
// Back // Nicolas Finsterbusch - 1en1.com - Buenos Aires, Argentina ///
////////////////////////////////////////////////////////////////////////
/*var backImage = new Array();

// Here we add more images.
backImage[0] = "images/bg_page01.gif";
backImage[1] = "images/bg_page02.gif";

// Function that makes the change of the image.
function changeBGImage(whichImage){
		alert ('hola');
		if (document.body){
			document.body.background = backImage[whichImage];
		}
}*/

function changeBodyStyle(styleName, styleName2){
		//alert ('changeBodyStyle');
		if (document.body){
			document.body.className = styleName;
		}
}
////////////////////////////////////////////////////////////////////////
// PopUp ///////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////
// popup(pag,ancho,alto,scrole);
// Popup function.

function popup(pag,ancho,alto,scrole) {
var hor
var ver
var ubix
var ubiy
ubix=ancho/2
ubiy=alto/2
hor= screen.width/2-ubix; //220 mitad de la medida de la ventana que se abre
ver= screen.height/2-ubiy;
	window.open(pag, "fto", "left="+hor+",top="+ver+",toolbar=0,location=0,directories=0,status=0,menubar=no,scrollbars="+scrole+",resizable=no,width="+ancho+",height="+alto);
}
////////////////////////////////////////////////////////////////////////