<!--
window.moveTo(0, 0);
window.resizeTo(screen.availWidth, screen.availHeight);

function openWindow(valor){
	var width = 795;
	var height = 503;
	var xPos =(screen.availWidth - width)/2;
	var yPos =(screen.availHeight - height)/2;
	window.open(valor, '','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,copyhistory=0, width=' + width + ',height=' + height + ',left=' + xPos + ',top=' + yPos);
}

function newwin(valor){
window.open(valor , '' ,
'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=0,copyhistory=0,width=383,height=500,left=100,top=100');
}

function zonas(valor){
window.open(valor , '' ,
'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,copyhistory=0,width=593,height=450,left=100,top=100');
}
//-->

