
		  var newwindow;
		  var str;
		  
		  function WindowPop(url, height, width) {
		    str = ",height=" + height;
			str += ",width=" + width;
		    newwindow=window.open(url,'name', str);
			if (window.focus) {newwindow.focus()}
		  }
		  
		  
		  function poptastic(url) {
		    newwindow=window.open(url,'name','height=300,width=450');
			if (window.focus) {newwindow.focus()}
		  }
		  
		  function buttkicker(url) {
		    newwindow=window.open(url,'name','height=800,width=800');
			if (window.focus) {newwindow.focus()}
		  }
		  
		  function roomplanner(url) {
		    newwindow=window.open(url,'name','height=570,width=769');
			if (window.focus) {newwindow.focus()}
		  }
		  
		  function palliserroomplanner(url) {
		    newwindow=window.open(url,'name','height=650,width=1000');
			if (window.focus) {newwindow.focus()}
		  }
		  
		  function shipping(url) {
		    newwindow=window.open(url,'name','scrollbars=yes,height=550,width=700');
			if (window.focus) {newwindow.focus()}
		  }
		  
		  function pricecompare(url) {
		    newwindow=window.open(url,'name','scrollbars=yes,height=475,width=500');
			if (window.focus) {newwindow.focus()}
		  }
		  
		  function palliser(url) {
		    newwindow=window.open(url,'name','scrollbars=yes,height=400,width=425');
			if (window.focus) {newwindow.focus()}
		  }
		  
		  function popuptopicwh(title,topic,w,h,scrollbars) {
		    window.open('popup.aspx?title=' + title + '&topic=' + topic,'Popup9020','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=' + scrollbars + ',resizable=no,copyhistory=no,width=' + w + ',height=' + h + ',left=0,top=0');
			return (true);
		  }