﻿/// <reference path='jquery-1.4.4-vsdoc.js' />

var inBasicMode = false;
if (!document.getElementById)
	inBasicMode = true;

function popupWindow(pageURL, windowTitle) {
	var windowFeatures = "height=300,width=300,resizable=yes,scrollbars=yes";
	windowPopup = window.open(pageURL, windowTitle, windowFeatures);
	windowPopup.focus
}
function switchSearch() {
	var searchAdvanced = document.getElementById("AdvancedSearch");
	if (searchAdvanced.style.display == "none") {
		searchAdvanced.style.display = "";
		hidePanel("QuickSearch")
	}
	else {
		searchAdvanced.style.display = "none";
		showPanel("QuickSearch")
	}
	return false;
}
function showPanel(showThis) {
	var itemToShow = document.getElementById(showThis);
	itemToShow.style.display = "";
}
function hidePanel(hideThis) {
	var itemToHide = document.getElementById(hideThis);
	itemToHide.style.display = "none";
}
function contactInfo() {
	var strMsg = "Shop opening hours (GMT):\n\n";
	strMsg += "  Monday-Weds\t9-5:30\n  Thursday\t\t9-7\n  Friday & Saturday\t9-5:30\n  Sunday\t\t11-5\n\n";
	strMsg += "Please give us a call!";
	alert(strMsg);
}
