

//Function to open new windows
function openWin(URL, Width, Height)
{

aWindow=window.open(URL,"PopUp","width="+Width+",height="+Height+",resizable=yes,scrollbars=yes,left=10,top=10");
	
	aWindow.resizeTo(Width, Height);
	
	aWindow.focus();
	if(aWindow.opener == null)
	{
		aWindow.opener = window;
		aWindow.opener.name = "opener";
	}

}

//Function for Dynamic Pop Ups
function DynaPop(szImgSource,szDescription,nCopyrightNum)
{

	popSource = szImgSource;
	popDescription = szDescription;
	popCopyright = nCopyrightNum;

	if (popDescription == "description")
		popDescription = "";
	
	width=600;
	height=525;

	//If resolution is 640x480
	if(screen.width < 800)
		height=200;
	//If resolution is 800x600
	else if(screen.width < 1024)
		height=300;

	if(level==0)
		openWin("dynapop.htm",width,height);
	else
		openWin("../dynapop.htm",width,height);
}





//Copyright Array
aClickMessages = new Array();
aClickMessages[0] = 'This image is copyright of the Heritage Communtity Foundation';
aClickMessages[1] = 'This image is copyright of USAID';
aClickMessages[2] = 'This image is copyright of the Embassy of Rwanda';
aClickMessages[3] = 'This image is copyright of IFAD, Photo by Robert Grossman';
aClickMessages[4] = 'This image is copyright of the International Bank for Reconstruction and Development(The World Bank)';
aClickMessages[5] = 'Photo by Markus Polag (virtualtourist.com)';
aClickMessages[6] = 'This image is copyright of The World Factbook';
aClickMessages[7] = 'This image is copyright of UNESCO';
aClickMessages[8] = 'This image is copyright of FAO - Food and Agriculture Organization';




//Image Protection Fxn's
function over(n)
{
	overImage=n;
	
}
