// JavaScript Document

startList = function()
{
	if (document.all&&document.getElementById)
	{
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++)
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI")
			{
				node.onmouseover=function()
				{
					this.className+=" over";
				}
				node.onmouseout=function()
				{
					this.className=this.className.replace(" over", "");
				}
			}
		}
	}
}
window.onload=startList;

function thisismymonkey(user, domain, name)
{
  if(user !="" && domain !="")
  {
  	document.write('<a href="&#109;&#97;&#105;&#108;&#116;&#111;&#58;' + user + '&#64;' + domain + '">');
  	document.write(name + '</a>');
  }
}

var imagePopup = null;

function image_popup(contentURL)
{
	if (imagePopup == null)
	{
		imagePopup = window.open(contentURL,'imagePopup','resizable=yes, toolbar=no, scrollbars=yes, width=800, height=400, left=0, top=0');
		imagePopup.focus();
	}
	else
	{
		if (imagePopup.closed == false)
			imagePopup.location = contentURL;
		else
			imagePopup = window.open(contentURL,'imagePopup','resizable=yes, toolbar=no, scrollbars=yes, width=800, height=400, top=0, left=0');
		imagePopup.focus();
	}
}

google_ad_client = "pub-2282398541324413";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel ="";
google_color_border = "003366";
google_color_bg = "000000";
google_color_link = "FFFFFF";
google_color_url = "FF6600";
google_color_text = "FF6600";

