<!--
// stylePicker.js created by Deming Love, 3-31-2003
// automatically detect browser and include appropriate stylesheet.
	if ( (navigator.appName == "Netscape") && (navigator.userAgent.indexOf("Mac") > -1) ) {
		document.write("<link rel='stylesheet' type='text/css' href='http://www.deminglove.com/style.css'>");
		}
	else if ( (navigator.appName != "Netscape") && (navigator.userAgent.indexOf("Mac") > -1) ) {
		document.write("<link rel='stylesheet' type='text/css' href='http://www.deminglove.com/style.css'>");
		}
	else {
		document.write("<link rel='stylesheet' type='text/css' href='http://www.deminglove.com/style.css'>");
		}
		
	NS4 = document.layers;
	if (NS4) {
	       origWidth = innerWidth;
	       origHeight = innerHeight;
	          }
	function reDo() {
	if (innerWidth != origWidth || innerHeight != origHeight)
	location.reload();
	                }
	if (NS4) onresize = reDo;	
// -->	