var win_contacto = null;
var win_foro = null;

function f_open_window_max( aURL, aWinName ){
   var wOpen;
   var sOptions;

   sOptions = 'status=no,menubar=no,scrollbars=no,resizable=no,toolbar=no';
   sOptions = sOptions + ',width=' + (screen.availWidth - 10).toString();
   sOptions = sOptions + ',height=' + (screen.availHeight - 122).toString();
   sOptions = sOptions + ',screenX=0,screenY=0,left=0,top=0';

   wOpen = window.open( '', aWinName, sOptions );
   wOpen.location = aURL;
   wOpen.focus();
   wOpen.moveTo( 0, 0 );
   wOpen.resizeTo( screen.availWidth, screen.availHeight );
   return wOpen;
}

function cargar_demo(){
	f_open_window_max("http://webmapping.homelinux.net:8080", "demo");
// 	var win_demo = new Window({className: "alphacube", title: "Demo", width:900, height:500});
// 	win_demo.setURL("http://webmapping.homelinux.net:8080/mapa.php");
// 	win_demo.showCenter(true);
}

function contacto_cursos(id_curso, idioma){
	win_contacto = new Window({className: "alphacube", title: "Contacto Curso", width:500, height:380, draggable:true, wiredDrag: true, minimizable:false, maximizable:false, resizable:false, closable:true, destroyOnClose:true});
	win_contacto.setURL("/" + idioma + "/cursos/contacto-curso.php?id_curso=" + id_curso);
	win_contacto.showCenter(true);
	
}

function descripcion_software(id_soft, idioma){
	var win_soft = new Window({className: "alphacube", title: "Descripci&oacute;n Software", width:740, height:380, draggable:true, wiredDrag: true, minimizable:false, maximizable:false, resizable:false, closable:true, destroyOnClose:true});
	win_soft.setAjaxContent("/" + idioma + "/software/descripcion-software.php?id_soft=" + id_soft, {}, true, true);
}

function cotizacion_software(id_soft, idioma){
	win_contacto = new Window({className: "alphacube", title: "Cotizaci&oacute;n de Curso", width:500, height:370, draggable:true, wiredDrag: true, minimizable:false, maximizable:false, resizable:false, closable:true, destroyOnClose:true});
	win_contacto.setURL("/" + idioma + "/software/cotizacion-software.php?id_soft=" + id_soft);
	win_contacto.showCenter(true);
}

function contacto(idioma){
	win_contacto = new Window({className: "alphacube", title: "Contactenos", width:500, height:265, draggable:true, wiredDrag: true, minimizable:false, maximizable:false, resizable:false, closable:true, destroyOnClose:true});
	win_contacto.setURL("/" + idioma + "/contacto/contacto.php");
	win_contacto.showCenter(true);
}

function cerrar_contacto(){
	win_contacto.close();
}

function ingresar_foro(idioma){
	win_foro = new Window({className: "alphacube", title: "Foros de Discusion", width:800, height:500, draggable:true, wiredDrag: true, minimizable:false, maximizable:false, resizable:false, closable:true, destroyOnClose:true});
	win_foro.setURL("/foro/index.php");
	win_foro.showCenter(true);
	
}