<!-- //Hide from old browsers	
	
//--------------------------------------------------------------------
// This code sets the default status for all pages
//--------------------------------------------------------------------
window.defaultStatus = "Fairchild Management Group";

//----------------------------------------------------------
// Returns true if the specified string is empty or equivalent
// @param txtString text string
//----------------------------------------------------------
function isEmpty(s)
{
	return ((s == null) || (s.length == 0))
}
//--------------------------------------------------------------------
// This function displays the input string in the browser statusbar
//--------------------------------------------------------------------
function showStatus(s)
{
	window.status = s;
	return true;
}
//--------------------------------------------------------------------
// Opens the specified url and name in a new window
//--------------------------------------------------------------------
function openWindow(url,name)
{
	var newWin = window.open('/redirect.asp?url='+ url + '&name=' + name,'newWin','');
	if (newWin)	newWin.focus();
}
//--------------------------------------------------------------------
// Opens the gallery window for the specified photo id
//--------------------------------------------------------------------
function openGallery(id)
{
	var gWin = window.open('/gallery/photoDetails.asp?id=' + id,'gWin','toolbar=0,menubar=0,resizable=1,scrollbars=0,width=650,height=530,left=50,top=50');
	gWin.opener.name = "opener"; //must name opener for targeting	
	if (gWin)	gWin.focus();
}
//--------------------------------------------------------------------
// Opens the specified newsletter in a new window
//--------------------------------------------------------------------
function openNewsletter(id)
{
	var gWin = window.open('/news/newsletters/newsletter.asp?id=' + id,'gWin','toolbar=0,menubar=0,resizable=1,scrollbars=1,width=690,height=600,left=50,top=50');
	gWin.opener.name = "newsletterOpener"; //must name opener for targeting	
	if (gWin)	gWin.focus();
}
//-->