function AbrirCorredores(url) {
var ServerURL = self.location.href;
var Position = ServerURL.indexOf("index");
var Actual_Server = ServerURL.substring(Position,ServerURL);
var newWindow = window.open(Actual_Server+url,"CORREDORES","height=390,width=600,scrollbars=yes,status=1");
// newWindow.location=Actual_Server+url
newWindow.focus()
}

function abrirFicha(url) {
var ServerURL = self.location.href;
var Position = ServerURL.indexOf("index");
var Actual_Server = ServerURL.substring(Position,ServerURL);
var newWindow = window.open(Actual_Server+url,"FICHA","height=390,width=560,status=1");
// newWindow.location=Actual_Server+url
newWindow.focus()
}
