// JavaScript Document
function popUpResumen(URL) {
day = new Date();
id = day.getTime();
LeftPosition=(screen.width)?(screen.width-700)/2:100; 
TopPosition=(screen.height)?(screen.height-300)/2:100; 
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=300,left="+LeftPosition+",top="+TopPosition+"');");
}
function popUpHelp(URL) {
day = new Date();
id = day.getTime();
LeftPosition=(screen.width)?(screen.width-750)/2:100; 
TopPosition=(screen.height)?(screen.height-400)/2:100; 
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=470,left="+LeftPosition+",top="+TopPosition+"');");
}
function popUpPortada(URL) {
day = new Date();
id = day.getTime();
LeftPosition=(screen.width)?(screen.width-750)/2:100; 
TopPosition=(screen.height)?(screen.height-400)/2:100; 
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=750,height=400,left="+LeftPosition+",top="+TopPosition+"');");
}

