<!--
function textLimit(field, maxlen) {
if (field.value.length > maxlen)
field.value = field.value.substring(0, maxlen);
}

function popWin(source)
 {
   mywindow = window.open (source,
  "mywindow","toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=500");
  mywindow.moveTo(0,0);
 } 

function go(form) 
{
location=form.skinmenu.value
}

var sURL = unescape(window.location.pathname);
function doLoad()
{
    // timeout value should be the same as the "refresh" meta-tag
    setTimeout( "refresh()", 1*1000 );
}
function refresh()
{
    window.location.href = sURL;
}

function formJump() {
	history.go(0);
}
//-->
