function popitup(url, nombre, height, width ) {
	newwindow = window.open(url,nombre,'height='+height+', width='+width+', scrollbars= 1');
	if (newwindow) {
		if (window.focus) {
			newwindow.focus();
		}
		return false;
	}
	else return true;
}
