function startPage(){
	statusSetter();
//	setBannerLink();
}

function statusSetter(msg) {
	if (msg == undefined)
	{
  	window.defaultStatus="Welcome to the Pottery Studio";
	} else {
  	window.defaultStatus=msg;
	}
}

// Google search
	function openGoo (thisURL) {
		var tWin = window.open(
			thisURL,
			'_blank','toolbar=yes,status=yes,scrollbars=yes') ;
	}

	function gooNote() {
		var Qr = prompt('Search the Pottery Studio for','');
		if (Qr) {
			openGoo('http://www.google.com/search?&q=site:www.studiopottery.com' + '+' + escape(Qr)) ;
		}
	}

	function gooBox(Qr) {
		if (Qr) {
			openGoo('http://www.google.com/search?&q=site:www.studiopottery.com' + '+' + escape(Qr)) ;
		}
	}
	
//function setBannerLink() {
//	var banner = document.getElementById("extraDiv2");
//	banner.onclick = function() { window.location.href = "/cgi-bin/sr.cgi"; }
//}

