// JavaScript Document
	function $id(id){
		elemento = document.getElementById(id);
		return elemento;
	}
	
	function popUp(src,w,h) {
	SmallWin=window.open(src,"SmallWin","top=10,left=5,toolbar=no,directories=no,status=no, resizable=yes, scrollbars=yes, menubar=no,width=" + w + ",height=" + h); SmallWin.window.focus()
	}

