/* SHOW/HIDE */	function toggle_visibility(id) {		var e = document.getElementById(id);		if(e.style.display == 'block')		e.style.display = 'none';		else		e.style.display = 'block';		}				/* POPUP */	function popUp(URL) {	day = new Date();	id = day.getTime();	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=950,height=660');");	}	/* POPUP 2 */	function popUp2(URL) {	newWindow= window.open(URL,'newWin','toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=575,height=395');}	
