// Open a popup window
	function openNote (thisURL) {
		var tWin = window.open(
			thisURL,
			'Detail','screenx=5,screeny=5,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=400,height=300') ;
	}

	function gooNote() {
		var Qr = prompt('Search the Pottery Studio for','');
		if (Qr) {
			openNote('http://www.google.com/search?&q=site:www.studiopottery.com' + '+' + escape(Qr)) ;
		}
	}

function doQTVR(page,w,h) {
	var thisPage = 'http://potterystudio.co.uk/' + page + '.html';
	w=w+80;h=h+70;
	if (w < 350) w = 350;
	var thisWindow = 'toolbar=no,top=0,left=0,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + w + ',height=' + h;
  tWin=window.open(thisPage, 'Potarama', thisWindow);
  }

