var ventana_bos = null;
var raiz;
var dir_idioma;
if (window.location.hostname == "www.artedrama.com"){
	raiz = "/";
}
else{
	raiz = "/artedrama/";
}
dir_idioma = "";
if (window.location.href.indexOf('/esp/') !=-1){
	dir_idioma = "esp/";
}
if (window.location.href.indexOf('/eus/') !=-1){
	dir_idioma = "eus/";
}
if (window.location.href.indexOf('/eng/') !=-1){
	dir_idioma = "eng/";
}

function ventanaAbrir(destino,titulo,ancho,alto,scrolleo){
	sw=screen.width; 
	sh=screen.height;
	ventana_bos=window.open(destino, titulo,'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars='+scrolleo+', resizable=no');
	ventana_bos.moveTo((sw-ancho) / 2, (sh-alto)/2);
	ventana_bos.resizeTo(ancho, alto);
	ventana_bos.focus();
}
function ventanaImprimir(){
	window.print();
}
function opw_trek(imageName,imageWidth,imageHeight,wTopTitle,posLeft,posTop,wWidth,wHeight) {
	newWindow = window.open("","newWindow","location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,width="+wWidth+",height="+wHeight+",left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.document.write('<html><title>'+wTopTitle+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" >'); 
	newWindow.document.write('<img src='+imageName+' width='+imageWidth+' height='+imageHeight+' alt='+wTopTitle+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
function actualizar(ano, mes){//alert( dir_idioma + 'calendario.php?ano='+ano+'&mes='+mes);
	// Registramos la peticion
	//abajo
	//ajaxEngine.registerRequest('getContent', raiz + dir_idioma + 'calendario.php?ano='+ano+'&mes='+mes);
	//arriba
	ajaxEngine.registerRequest('getContent', 'calendario.php?ano='+ano+'&mes='+mes);
	// Que hacer cuando se termine la peticion
	ajaxEngine.options.onComplete = setTimeout ('enableTooltips()', 1000);
	// Enciar peticion
	ajaxEngine.sendRequest('getContent', "ano=" + ano , "mes=" + mes);
}

