<!--

var popUpWin;
function popUpWindow(pageURL, left, top, width, height) {
  if(popUpWin) {
    if(!popUpWin.closed) {
		popUpWin.close();
	}
  }
  popUpWin = open(pageURL, 'MWorkshop_PopUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
  popUpWin.focus();
}

function popUpNote(pageURL, left, top, width, height) {
	var popUpNote;
	popUpNote = open(pageURL, 'MWorkshop_PopUpNote','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function mailtoQuery() {
	window.location.href = "mailto:enquiry@themworkshop.com";
}

// -->