<!-- 
function ok(msg,src)
{
	if (confirm(msg)) document.location.href=src;
}

function popup(theURL,winName,features) { 
  alert("test")
  window.open(theURL,winName,features);
}

function popupCenter(theURL,winName,w,h) {
	var iMyWidth;
	var iMyHeight;
	iMyWidth = (window.screen.width/2) - ((w/2) + 10);
	iMyHeight = (window.screen.height/2) - ((h/2) + 50); 
	var win2 = window.open(theURL,winName,"toolbar=no,location=no,status=no,menubar=no,scrollbars=1,resizable=yes,height="+h+",width="+w+",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight);
	win2.focus();
}

function popupCenterNoScroll(theURL,winName,w,h) {
	var iMyWidth;
	var iMyHeight;
	iMyWidth = (window.screen.width/2) - ((w/2) + 10);
	iMyHeight = (window.screen.height/2) - ((h/2) + 50); 
	var win2 = window.open(theURL,winName,"toolbar=no,location=no,status=no,menubar=no,scrollbars=0,resizable=no,height="+h+",width="+w+",left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight);
	win2.focus();
}

function collapse (id) { 
if(!document.getElementById) { exit; } 
	else { menu_id=document.getElementById(id); 
       menu_id.style.display=(menu_id.style.display!="none")?"none":"block"; 
	} 
} 

function SimpleSwap(el,which){
  el.src=el.getAttribute(which || "origsrc");
}

function SimpleSwapSetup(){
  var x = document.getElementsByTagName("img");
  for (var i=0;i<x.length;i++){
    var oversrc = x[i].getAttribute("oversrc");
    if (!oversrc) continue;
    x[i].oversrc_img = new Image();
    x[i].oversrc_img.src=oversrc;
    x[i].onmouseover = new Function("SimpleSwap(this,'oversrc');");
    x[i].onmouseout = new Function("SimpleSwap(this);");
    x[i].setAttribute("origsrc",x[i].src);
  }
}

var PreSimpleSwapOnload =(window.onload)? window.onload : function(){};
window.onload = function(){
	PreSimpleSwapOnload(); 
	SimpleSwapSetup();
}

-->