// ------- PAGINAS -------- //

// IR A PAGINA 
function Go(src){
	if (src.value!=''){
		self.location = "index.php?id=" + src.value;
	}	
}

// POPUP 
function Popup(url, w, h){
	window.open(url,"New","width=" + w + ",height=" + h + ",top=150,left=150,scrollbars=1");
}