function ImageSwap(imageName) {
	newImage= 'images/registration/' + imageName + '_over.jpg';
	document.images[imageName].src = newImage;
}

function ImageSwapBack(imageName) {
	newImage= 'images/registration/' + imageName + '_button.jpg';
	document.images[imageName].src = newImage;
}
function storeWindow() {
newWin = window.open('storelocator.html', 'JS', 'width=346,height=420,scrollbars=yes,resizeable=no');
newWin.focus();
}

function contactWindow() {
newWin = window.open('contact.html', 'JS', 'width=510,height=298,scrollbars=yes,resizeable=no');
newWin.focus();
}

