function openNewWindow(URLtoOpen, windowName, windowFeatures) { 
    newWindow=window.open(URLtoOpen, windowName, windowFeatures); 
}

function openForm(formulario) {
	var h = screen.availHeight * 0.9;
	var w = screen.availWidth * 0.95;
	var t = screen.availHeight * 0.05;
	var l = screen.availWidth * 0.025;
	var cvw = window.open(formulario, 'formulario', 'height=' + h + ',width=' + w + ',toolbar=no,scrollbars=yes,resizable=yes,left=' + l + ',top=' + t);
}

function openFormXY(formulario, x, y) {	
	var t = (screen.availHeight-y)/2;
	var l = (screen.availWidth - x)/2;
	var cvw = window.open(formulario, 'formulario', 'height=' + y + ',width=' + x + ',toolbar=no,scrollbars=yes,resizable=yes,left=' + l + ',top=' + t);
}

function openWindowSize(pagina,titulo,alto,ancho) {
	var h = alto;
	var w = ancho;
	var t = screen.availHeight * 0.05;
	var l = screen.availWidth * 0.025;
	var cvw = window.open(pagina, titulo, 'height=' + h + ',width=' + w + ',toolbar=no,scrollbars=yes,resizable=yes,left=' + l + ',top=' + t);
}
function openCVForm() {
	var h = screen.availHeight * 0.9;
	var w = screen.availWidth * 0.95;
	var t = screen.availHeight * 0.05;
	var l = screen.availWidth * 0.025;
	var cvw = window.open('/otros/pages/ayuda_ssl.htm', 'ayuda_ssl', 'height=500,width=500,toolbar=no,scrollbars=yes,resizable=yes');
}

/*
function openCVFormPT() {
	var h = screen.availHeight * 0.9;
	var w = screen.availWidth * 0.95;
	var t = screen.availHeight * 0.05;
	var l = screen.availWidth * 0.025;
	var cvw = window.open('/empleo/pages/e_2_2-pt.htm', 'cv_form', 'height=' + h + ',width=' + w + ',toolbar=no,scrollbars=yes,resizable=yes,left=' + l + ',top=' + t);
}
*/
// función para abrir el banner en flash de motos para el area reservada
/*function popup() {
	window.open('/distribuidores/lubricantes/pages/popup_motos.htm','','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,width=772,height=315,left=100,top=100');
}*/
