function showInfo() {
	window.open("piinfo.html", "IconGuide", "width=380,height=280,scrollbars=yes");
}

function showWeather(aPlace) {
	window.open("http://www.weather.com/cgi-bin/uncgi/zip_city_search.cgi?par=internal&site=logo&promo=english&destination="+aPlace+"", "IconGuide", "width=700,height=400,scrollbars=yes");
}

// This function allows me easy access to pictures on alternate sites, required due to space limitations.
// Note: all thumbnails are assumed to be on the base site
function drawPic(name, desc, home) {
	if (home == null)
	{
		realhome = "";
	} else if (home == "r")
	{
//		realhome = "";
		realhome = "http://www.btinternet.com/~t.zacharia/hol2000/";	// alt site 1
	} else if (home == "r2")
	{
//		realhome = "";
		realhome = "http://www.btinternet.com/~constantine.zacharia/hol2000/";	// alt site 2
	} else
	{
		realhome = "";
	}

	document.write('<A HREF="'+realhome+'pics/'+name+'" ><IMG SRC="th/'+name+'" ALT="'+desc+'" BORDER=0 WIDTH=300 ></A>');
}

