function browser_name() {
		var browser_name = navigator.appName;
		return browser_name;
	}

	function browser_version() {
		var browser_version = parseFloat(navigator.appVersion);
		return browser_version;
	}

	function browser_os() {
		if(navigator.appVersion.indexOf("Win95") > 0) return "WIN95";
		else if(navigator.appVersion.indexOf("Win16") > 0) return "WIN31";
		else if(navigator.appVersion.indexOf("WinNT") > 0) return "NT";
		else if(navigator.appVersion.indexOf("Mac") > 0) return "MAC";
		else if(navigator.appVersion.indexOf("UNIX") > 0) return "UNIX";
		else return "UNKNOWN";
	}

var browserOk = false;

if (browser_name() == "Netscape" && browser_version() >= 3.0) browserOk = true;
else if (browser_name() == "Microsoft Internet Explorer" && browser_version() >= 3.0) browserOk = true;

function chg_button(titlename, onoff) 
{
	if (browserOk == true) {
			document[titlename].src = "/images/button_" + titlename + "_" + onoff + ".gif"
	}
}

function open_window (page) {

date = new Date();
counter = Math.floor((date.getSeconds()/60)*100);

	new_window = window.open (page,"a" + counter + "a","width=780,height=450,toolbar=no,location=no,scrollbars=yes,directories=no,menubar=no,resizable=yes");
}

function insert_quote () {
	var quote = new Array ();
	var author = new Array ();

	counter = 0;

	quote[counter] = "I was planning a party for a Preschool Mom's Club I belong to and thought it would be a great idea to have a face painter.&nbsp; It seems like kids always like getting their face, arm or hand painted.&nbsp; I asked Connie if she would come and spend an hour at the event.&nbsp; She not only came and spent an hour, she stayed until the last child had his face painted.&nbsp; She spent TWO hours at the event painting.&nbsp; The children were very happy; as were the Moms...I would definitely consider Connie for another event and would recommend her highly.&nbsp; Thank you so much!";
	author[counter] = "Tanya N.";
	counter++;
	
	quote[counter] = "We had Connie do face painting for our reunion in August, 2007.  It was a two day event and we had 185 children in attendance.  Connie helped to create a wonderful party atmosphere, she was very professional and we had nothing but compliments on the quality of her work.  Connie is exactly the type of entertainer you want at your event!"
	author[counter] = "Lori P., 2007 CCAI Midwest Reunion Co-Chair"
	counter++;

	quote[counter] = "Connie goes out of her way to make a party fun for little ones!"
	author[counter] = "Susan F."
	counter++;
	
	date = new Date();
	pick_quote=Math.floor((date.getSeconds()/60)*quote.length);
	
	document.write("&quot;" + quote[pick_quote] + "&quot;&nbsp;&nbsp<b>- <i>" + author[pick_quote] + "</i></b>");
}

function open_image (imagefile, width, height) {

date = new Date();
counter = Math.floor((date.getSeconds()/60)*100);


	new_window = window.open (imagefile,"a" + counter + "a","width="+width+",height="+height+",toolbar=no,location=no,scrollbars=no,directories=no,menubar=no,resizable=no");
}