

function hidestatus(statusmsg) {
// Hide status bar msg script by Wsabstract.com
// Visit Website Abstraction (http://wsabstract.com) for script.

// configure status message
		window.status=statusmsg
		return true
}


function ChangeSrc(FrameName, myURL) {
// change source of a frame
// FrameName = frame to change
// myURL = new source url

		top.frames[FrameName].window.location=myURL;
		}

function toggleDisplay(t)
	{
	if (t.style.display == "") t.style.display = "none";
	else  t.style.display = "";
	}
	
function openBrWindow(theURL,winName,features) { 
	// function to open a new window
	// theURL = url for the new window
	// winName = name of the new window - important if you later want to open something in this same window!
	// features = methods/properties to open the window, ie. no browser chrome, no scrollbar etc.
	theWin=window.open(theURL,winName,features);
  	theWin.focus();
}
