// JavaScripts for Joyce and Peter Froome's Web pages
//
//-----------------------------------------------------
// History
//
// V0.2  28/04/2001 (Peter Froome)
// Modified for site version 5.1
//
// V0.1  Created 01/07/2000 (Peter Froome)
// The first version of the JavaScripts
//
//------------------------------------------------------

// Open an information window

function openInfoWin(url)
{
    infoWin = window.open(url, "_blank", "width=590,height=600,scrollbars");
    infoWin.focus()
}

function openVideoWin(url)
{
    newWin = window.open(url, "_blank", "height=260,width=340,scrollbars");
    newWin.focus()
}

// Scroll the browser window to bottom right

function scrollBmRt()
{ if ( window.scrollBy )
	{ scrollBy(1000,1000)
	}
}


// Actions to be performed when onload event occurs.

function loadactions(pageName)
{ 	var melem;
	if (document.getElementById)
	{	melem = document.getElementById(pageName);
		melem.className="curpage";
	}
}

