/* 20090108-1327 */
// Open Popup
/*
 * PARAMETERS
 * - url (URL of the popup)
 * - name (Name of the popup)
 * - w (Width)
 * - h (Height)
 * - scrolling (no = 0 / yes = 1)
 */
function openPopup(url,name,w,h,scrolling) {
	var leftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	var topPosition = (screen.height) ? (screen.height-h)/2 : 0;
	var settings = "height="+h+",width="+w+",top="+topPosition+",left="+leftPosition+",scrollbars="+scrolling+",resizable=0";
	return window.open(url,name,settings);
}

// Popup editorial
function abre(url,janela,larg,alt,scroll){
	if (!scroll) { scroll='auto' }
	window.open(url,janela,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scroll+",resizable=no,copyhistory=no,width="+larg+",height="+alt);
}