window.defaultStatus=" Deveron Arts, Huntly, Aberdeenshire";

function statusMsg(msg) {
	window.status=(msg);
}

 
 //Script for pop-ups
function openWindow(htmlfile,w,h) {
  newWindow=window.open(htmlfile,'newWin','width='+w+',height='+h+',left=150px,top=75px,scrollbars=yes')
  newWindow.focus()
}  


//Script to clear default values in forms
function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}


