// JavaScript Document
function showForm()
{
     openWindow("formulario/index.php");   
}

var win;
function cerrar(){
	win.close();
}
function openWindow(url){
win = new Window({className: "spread", title: "Inscripción de candidatos", minimizable:false, maximizable:false, draggable:false, resizable:false, closable:true, top:70, left:100, width:600, height:600, 
                //      top:70, left:100, width:300, height:200, 
                      url: url, showEffectOptions: {duration:1.5}});
win.showCenter(true);
}

function openWindow2(url){
win = new Window({className: "spread", title: "OFERTA DE TRABAJO", minimizable:false, maximizable:false, draggable:false, resizable:false, closable:true, top:70, left:100, width:535, height:488, 
                //      top:70, left:100, width:300, height:200, 
                      url: url, showEffectOptions: {duration:1.5}});
win.showCenter(true);
}
   