//Change to a new Window
function open_site(x){
	if(x == ""){
		return;
	}else{
		window.location.href = x;
	}
}

function fpop_up(url) {
var pop=window.open(url,'','menubar=no,toolbar=no,scrollbars=no,status=no,resizable=no,width=280 height=350,top=50,left=50');
}

function openNewWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function popImg(imagen,path) {
var posTop = screen.availHeight / 2 - (570 / 2) - 30; var posLeft = screen.availWidth / 2 - (670 / 2); var ventana = window.open(path + "popimg.php?id=" + imagen,"imagenAmpliada","left=" + posLeft + ", top=" + posTop + ", toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, width=670, height=565"); ventana.focus();
}