function toggle(target){	if (target == "open"){		document.getElementById("long").style.display='block';		document.getElementById("short").style.display='none';	}else{		document.getElementById("long").style.display='none';		document.getElementById("short").style.display='block';	}	}function blank(path) {mywindow = window.open(path,'mywindow','width=460,height=500,status=no,menubar=no,menu=no,resizable=yes,scrollbars=yes');mywindow.focus();return false;}