
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		menu_01_over = newImage("images/menu_01-over.jpg");
		menu_02_over = newImage("images/menu_02-over.jpg");
		menu_03_over = newImage("images/menu_03-over.jpg");
		menu_04_over = newImage("images/menu_04-over.jpg");
		menu_05_over = newImage("images/menu_05-over.jpg");
		preloadFlag = true;
	}
}

function showSpecialOffers()
{
	var iWidth= 100;
	var iHeight= 100;
	iWidth = 320;
	iHeight = 200;
	
	var iLeft;
	iLeft = (screen.width / 2) - (iWidth / 2);
	var iTop;
	iTop = (screen.height / 2) - (iHeight / 2);
	
	strArgs = "status=0,width=" + iWidth + ",height=" + iHeight + ",toolbar=0,menubar=0,left=" + iLeft + ",top=" + iTop;
	var objWindow = window.open("assets/pages/SpecialOffers.htm", "SpecialOffers", strArgs);
	//objWindow.moveTo(iLeft, iTop);
}

function showPrices()
{
	var iWidth= 100;
	var iHeight= 100;
	iWidth = 320;
	iHeight = 260;
	
	var iLeft;
	iLeft = (screen.width / 2) - (iWidth / 2);
	var iTop;
	iTop = (screen.height / 2) - (iHeight / 2);
	
	strArgs = "status=0,width=" + iWidth + ",height=" + iHeight + ",toolbar=0,menubar=0,left=" + iLeft + ",top=" + iTop;
	var objWindow = window.open("assets/pages/Prices.htm", "Prices", strArgs);
	//objWindow.moveTo(iLeft, iTop);
}

function showArticles()
{
	var iWidth= 100;
	var iHeight= 100;
	iWidth = 320;
	iHeight = 200;
	
	var iLeft;
	iLeft = (screen.width / 2) - (iWidth / 2);
	var iTop;
	iTop = (screen.height / 2) - (iHeight / 2);
	
	strArgs = "status=0,width=" + iWidth + ",height=" + iHeight + ",toolbar=0,menubar=0,left=" + iLeft + ",top=" + iTop;
	var objWindow = window.open("assets/pages/Articles.htm", "Articles", strArgs);
	//objWindow.moveTo(iLeft, iTop);
}

var objWindow;
function showIndex()
{
	var iWidth= 100;
	var iHeight= 100;
	iWidth = 320;
	iHeight = 270;
	
	var iLeft;
	iLeft = (screen.width / 2) - (iWidth / 2);
	var iTop;
	iTop = (screen.height / 2) - (iHeight / 2);
	
	strArgs = "status=0,width=" + iWidth + ",height=" + iHeight + ",toolbar=0,menubar=0,left=" + iLeft + ",top=" + iTop;
	objWindow = window.open("assets/pages/Index.htm", "Articles", strArgs);
	
	//objWindow.moveTo(iLeft, iTop);
}

function loadCatalogue(page)
{
	window.opener.location = "http://www.leisurelinespas.com/" + page;
	window.close();
}