// AMERICAN FLAG STATUS MESSAGEfunction MM_displayStatusMsg(msgStr) { //v1.0  status=msgStr;  document.MM_returnValue = true;}// popWin//	*** EXAMPLE ***//	<a href="javascript:popWin('index.html','200','200','Name')">PopUp</a>function popWin (url, w, h, name) {	var winopts = "toolbar=no,location=no,directories=no,status=no,";	winopts = winopts + "menubar=no,scrollbars=yes,resizable=yes,";	winopts = winopts + "width=" + w + ",height=" + h; remote = window.open(url,name,winopts);}// show-hide elementfunction toggle( targetId ){  if (document.getElementById){  		target = document.getElementById( targetId );  			if (target.style.display == "none"){  				target.style.display = "";  			} else {  				target.style.display = "none";  			}  	}}