// ecard pop up script
function popUpEcard() {
  window.open("/ecard/themonkees.lasso", "Rhino","width=550,height=550, statusbar=auto, toolbar=0, scrolling=no, resize=yes, navbar=0");
}

// email sign up box
	var clearbox = {
			'input.email' : function(element){
				element.onfocus = function(){
					this.value='';
					return false;
				}
			}
		};
	Behaviour.register(clearbox);
