//top.window.moveTo( 0,0 );

/*if( document.all )
{
	top.window.resizeTo( screen.availWidth, screen.availHeight );
}
else if( document.layers || document.getElementById )
{
	if( top.window.outerHeight < screen.availHeight || top.window.outerWidth<screen.availWidth )
	{
		top.window.outerHeight = screen.availHeight;
		top.window.outerWidth = screen.availWidth;
	}
}*/


function CheckPagePath( srcObj )
{
	try
	{
		if( srcObj.indexOf( '/mental_health/archive' ) > -1 )
		{
			var newHTML = '<td id="colAtop" width="213" align="left" valign="top"><!-- LEFT COL --><div id="levelTwoHeadingPH"><h2>Rosalynn Carter Fellowships for Mental Health Journalism</h2></div><!-- /LEFT COL --></td>';
			document.write( newHTML );
		}
		if( srcObj.indexOf( '/health/trachoma_education/' ) > -1 )
		{
			var newHTML = '<td id="colAtop" width="213" align="left" valign="top"><!-- LEFT COL --><div id="levelTwoHeadingPH"><h2>Trachoma Health Education Materials Library</h2></div><!-- /LEFT COL --></td>';
			document.write( newHTML );
		}
		else if( srcObj.indexOf( '/news/multimedia' ) > -1 )
		{
			var newHTML = '<td id="colAtop" width="213" align="left" valign="top"><!-- LEFT COL --><div id="levelTwoHeading"><h2>Multimedia</h2></div><!-- /LEFT COL --></td><td id="colBtop" width="524" align="left" valign="top"><!-- MAIN COL --><div id="subhdr_news"></div><!-- /MAIN COL --></td>';
			document.write( newHTML );
		}
		else if( srcObj.indexOf( '/news/documents' ) > -1 )
		{
			var newHTML = '<td id="colAtop" width="213" align="left" valign="top"><!-- LEFT COL --><div id="levelTwoHeading"><h2>&nbsp;</h2></div><!-- /LEFT COL --></td><td id="colBtop" width="524" align="left" valign="top"><!-- MAIN COL --><div id="subhdr_news"></div><!-- /MAIN COL --></td>';
			document.write( newHTML );
		}
		else if( srcObj.indexOf( '/news/publications/health/eye_eagle' ) > -1 )
		{
			var newHTML = '<td id="colAtop" width="213" align="left" valign="top"><!-- LEFT COL --><div id="levelTwoHeading"><h2>&nbsp;</h2></div><!-- /LEFT COL --></td><td id="colBtop" width="524" align="left" valign="top"><!-- MAIN COL --><div id="subhdr_news"></div><!-- /MAIN COL --></td>';
			document.write( newHTML );
		}
		else if( srcObj.indexOf( '/news/features/h/' ) > -1 || srcObj.indexOf( '/news/features/p/' ) > -1 || srcObj.indexOf( '/news/features/cc/' ) > -1 || srcObj.indexOf( '/news/features/blogs/' ) > -1 )
		{
			var newHTML = '<td id="colAtop" width="213" align="left" valign="top"><!-- LEFT COL --><div id="levelTwoHeading"><h2>&nbsp;</h2></div><!-- /LEFT COL --></td><td id="colBtop" width="524" align="left" valign="top"><!-- MAIN COL --><div id="subhdr_news"></div><!-- /MAIN COL --></td>';
			document.write( newHTML );
		}
		else if( srcObj.indexOf( '/about/contact' ) > -1 )
		{
			var newHTML = '<td id="colAtop" width="213" align="left" valign="top"><div id="levelTwoHeading"><h2>Contact The <br />Carter Center</h2></div></td><td id="colBtop" width="524" align="left" valign="top"><div id="subhdr_about"></div></td>';
			document.write( newHTML );
		}
		else if( srcObj.indexOf( '/peace/americas/speeches' ) > -1 || srcObj.indexOf( '/peace/americas/reports' ) > -1 )
		{
			var newHTML = '<td id="colAtop" width="213" align="left" valign="top"><div id="levelTwoHeading"><h2>Americas Program</h2></div></td>';
			document.write( newHTML );
		}
		else if( srcObj.indexOf( '/peace/gdi/' ) > -1 )
		{
			var newHTML = '<td id="colAtop" width="213" align="left" valign="top"><div id="levelTwoHeading"><h2>The Carter Center Global Development Initiative</h2></div></td>';
			document.write( newHTML );
		}

	}
	catch(e)
	{}
}

function ClearSearchBox( srcObj )
{
	if( srcObj.value.toLowerCase() == 'search our site' )
		srcObj.value = "";
}

var hiResWinRef = null;

function ViewHiRes()
{
	var mainImagePath = document.getElementById( "colMainImage" ).getElementsByTagName( "IMG" )[0].src;
	var hiResImagePath = mainImagePath.replace( "/main/", "/highres/" );
	hiResImagePath = hiResImagePath.replace( window.location.protocol + "//" + window.location.hostname, "" );
	
	var pagePath = "/news/photos/view_hires.html?path=" + hiResImagePath;

	if( hiResWinRef )
		hiResWinRef.close();
		
	hiResWinRef = window.open( pagePath, "Popup", "height=500,width=500,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes" )
	
	return false;
}

function OpenDonateLink( srcUrl )
{
	if( srcUrl == "" )
		return;
		
	var donateWin = window.open( srcUrl, "DonateOnline" );
}

var winRef = null;

function PopWindow(file, width, height, showScroll)
{
	if ( typeof( showScroll ) == 'undefined' )
		showScroll = 'yes';

	if( winRef )
		winRef.close();
		
	winRef = window.open(file, "Popup", "height=" + height + ",width=" + width +
	",toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=" + showScroll)
	return false;
}

function donateEmail(){
	var emailValue = document.getElementById('email').value;
	window.location = "http://carter.convio.net/site/PageServer?pagename=email_signup&cons_email=" + emailValue;
}

