function wink(thecat,thestate) {	// simple show/hide div function, copyright h1
	target = document.getElementById ? document.getElementById(thecat) : document.all[thecat]
	if (thestate=='flip')	// accepted states: block, none or flip
		{	thestate= target.style.display=='block' ? 'none' : 'block';	}
	target.style.display = thestate
}

function popWin(url,w,h) {	// popup script copyright h1Web.  We rule all!
	w=window.open(url,"w","resizable=1,scrollbars=1,width="+w+",height="+h) 
	if (w)	{	w.focus()	}	// IF put in to prevent JS errors on browsers with popup blockers
	}
