/* NAVIGATION SCRIPT */
/*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";
this.style.zIndex = 100;
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
this.style.zIndex = 1;
}
}
}
}
}
window.onload=startList;*/


function showBox(selected_src, formname){
	document.getElementById(formname).src=selected_src;
	}
	
function openPop(url){
	var newwin = window.open('log_email.php',"neww","top=10,left=10,width=400, height=300,scrollbars=no,status=no");
	newwin.focus();
	}	
