// JavaScript Document

function showPic (whichpic) { 
	if (document.getElementById) { 
		document.getElementById('placeholder').src = whichpic.href; 
		if (whichpic.title) { 
			document.getElementById('desc').childNodes[0].nodeValue = whichpic.title; 
		} else { 
			document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue; 
		} 
		return false; 
	} else { 
		return true; 
	} 
}

function domail2 (user) {
    //Thwart the bots. Added by Will Mowlam on 20-Mar-07.
	var dom = "growlercouture.co.uk";
	var at = "&#64;";
	var add = user + at + dom;
	document.write("<"+"a"+" "+"href='"+"mail"+"to:"+add+"'>"+add+"<\/a>");
}

function openWindow(theURL,winName,features) { //v2.0
  thisWin = window.open(theURL,winName,features);
  thisWin.focus();
}