

function windowPopup(url, name, width, height) 
{
   var myLeft = (screen.width - width) /2;
   var myTop = (screen.height - height) / 2;
   
   var myWindow = window.open(url,name,'width='+width+',height='+height+',scrollbars=yes,resiazable=yes,left='+myLeft+',top='+myTop);
   myWindow.focus();
}

function comingSoon()
{
	alert("We will be up and running shortly. Apologies for the inconvenience.");
}

function toggleImage(img, imgUrl)
{
	var element = document.getElementById(img);
	element.src = imgUrl;
}
