function menu_goto(object) {
    window.location.href = object.options[object.selectedIndex].value;
}

function openlink(siteid)
{
width = 1020;
height = 650;
window.open('/out/' + siteid , '', 'toolbars=yes,width=' + width + ',height=' + height + ',status=yes, menu=yes,location=yes,toolbar=yes,scrollbars=yes,resizable=yes,left=' + ((screen.width - width) / 2) + ', top=' + ((screen.height - height) / 4));
}
function toggleMenu(objID) {
if (!document.getElementById) return;
var ob = document.getElementById(objID).style;
ob.display = (ob.display == 'block')?'none': 'block';
}
function clearText(field){
if (field.defaultValue == field.value) field.value = '';
else if (field.value == '') field.value = field.defaultValue;
}

