function pasame(variable){
	var sendText = variable;
	window.document.myContent.SetVariable("celebracionPreparada", sendText);
}

function doShowWindow(sHref, sName, iWidth, iHeight, sScroll, sResize){
	var iTop = ((screen.height - iHeight)/2);
	var iLeft = ((screen.width - iWidth)/2);
	var oWindow = window.open(sHref,sName,'top=' + iTop +'left=' + iLeft + ',height=' + iHeight + ',width=' + iWidth + ',top=' + iTop + ',left='+ iLeft + 'px,scrollbars=' + sScroll + ',resizable=' + sResize+ '');
	oWindow.focus();
}

var mentor;
function abreMentor(quien){
	mentor = window.open('http://www2.ascidirect.es/DiageoMentor/reserva.aspx?BDPTM=7&MARCA=316&ID='+quien,'mentor','width=822,height=622,scrollbars=yes,location=no');
	compruebaMentor();
}

function compruebaMentor(){
	if (mentor.closed){
		pasame(true)
	}else{
		return setTimeout("compruebaMentor()",1000);
	}
}

function abrirAviso (URL){
	ventana1=window.open(URL,"ventana","width=355, height=590, scrollbars=no, menubar=no, location=no, resizable=no");
	x = (screen.width - 355) / 2;
	y = (screen.height - 590) / 2;
	ventana1.moveTo(x, y);
}
function abrirBases (URL){
	ventana1=window.open(URL,"ventana","width=355, height=590, scrollbars=no, menubar=no, location=no, resizable=no");
	x = (screen.width - 355) / 2;
	y = (screen.height - 590) / 2;
	ventana1.moveTo(x, y);
}



