tiger1 = new Image()
tiger1.src = "images/" + "tiger_1.gif";
tiger2 = new Image()
tiger2.src = "images/" + "tiger_2.gif";

function mouseoverImg(imgName) 
{
	search= "images/" + imgName + "_2.gif";
	document.images[imgName].src = search
}

function mouseoutImg(imgName) 
{
	search= "images/" + imgName + "_1.gif"
	document.images[imgName].src = search
}
                                      
function NewWindow(url, w, h) 
	{

		url = "images/" + url + ".jpg"
		if (w > screen.width || h > screen.width)
		{
			if (w > screen.width && h <= screen.height)
			{
			var nw = screen.width - 70;
			var nh = parseInt(h) + 36
			}
			if (h > screen.height && w <= screen.width)
			{
			var nh = screen.height - 70;
			var nw = parseInt(w) + 36
			}
			if (w > screen.width && h > screen.height)
			{
			var nh = screen.height - 70;
			var nw = screen.width - 70;
			}

			nw = window.open(url,"_blank","width=" + nw + ",height=" + nh + ",left=0,top=0,scrollbars=yes,menubar=no,resizable=yes");	
		}
		else
		{
			var nh = parseInt(h) + 25;
			var nw = parseInt(w) + 25;
			nw = window.open(url,"_blank","width=" + nw + ",height=" + nh + ",scrollbars=no,menubar=no,resizable=no");
		}
		nw.document.bgColor = "#fec536";
	}