// Build imagehandler
var ia = new ImageHandler();
ia.root = "/lib/images/nav_";
ia.extension = ".gif";
ia.labelstart = " [  ";
ia.labelend = "  ] ";

// Contact and search
ia.add("iabout","about","About Us");
ia.add("iport","portfolio","Porfolio");
ia.add("inews","news","News");
ia.add("inews_home","news_home","News");
ia.add("icontact","contact","Contact Us");
ia.add("istore","store","Store");
ia.add("inon","non","Now Or Never");
ia.add("iloa","loa","Lawrence of America");

// Handle routing to new window
var popwin=null;
function popup(url,options) {
	if (!options) options="width=600,height=600,scrollbars,resizable";
	popwin = window.open(url,"popwin",options);
	popwin.focus();
	return false;
}

// Jumble email
var domain="wombatproductions.com";
function printEmail(m,t,l) {
	var address = m + "@" + domain;
	if (!l) l=address;
	if (t) document.write('<a href="mailto:' + address + '">' + l + '</a>');
	else document.write(address);
}
