function show(id) {
elm = document.getElementById(id);
if (elm!=null) {
elm.className="unhidden";
}
}

function spawn(page) {
    
	    var w= 550;
		var h = 500;
		var l = screen.availWidth-(w+20);
		var t = screen.availHeight-(h+120);
		var pos ="width=" + w + ",height=" + h + ",left=" + l + ",top=" + t;
        var newwin=window.open(page, "", "scrollbars=auto, resizable=yes, addressbar=yes, menubar=no, toolbar=no, status=no," + pos);


	}
function setLocale(elm) {
  document.getElementById("forwardURL").value=document.location;
  elm.form.submit();
  }