	// Copyright © 2001 - 2003  SolWeb Informática S.L. All rights reserved.
	// This script may not be copied, reproduced, republished, posted, or
	// distributed in any way, without the  prior written permission of
	// SolWeb Informática S.L.
	
	function openWindow(pageURL, windowWidth, windowHeight) {

		var windowPosX
		var windowPosY
		var newWindow

		windowPosX = (screen.width - windowWidth) / 2;
		windowPosY = (screen.height - windowHeight) / 4 + 100;
		if (windowPosX < 0) windowPosX = 0;
		if (windowPosY < 0) windowPosY = 0;
		newWindow = window.open(pageURL, "popup", "toolbar=no,location=no,left=" + windowPosX + ",top=" + windowPosY + ",directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + windowWidth + ",height=" + windowHeight);

	}

	function swapImages(imageName, newImage)
	{
		document.images[imageName].src=eval(newImage+'.src');
	}
	
	function cacheImages()
	{
		home_off = new Image();
		home_off.src = "/images/en/yourhomepage.gif";
		home_on = new Image();
		home_on.src = "/images/en/yourhomepage_on.gif";
				
		favorites_off = new Image();
		favorites_off.src = "/images/en/addtofavorites.gif";
		favorites_on = new Image();
		favorites_on.src = "/images/en/addtofavorites_on.gif";

		web_off = new Image();
		web_off.src = "/images/en/addyourwebsite.gif";
		web_on = new Image();
		web_on.src = "/images/en/addyourwebsite_on.gif";
				
		link_off = new Image();
		link_off.src = "/images/en/howtoputalink.gif";
		link_on = new Image();
		link_on.src = "/images/en/howtoputalink_on.gif";
	}
