
function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

function goto(form) {
        var albumindex=form.area.selectedIndex
        window.open(form.area.options[albumindex].value,"main","");
}

function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=540,height=450,left=10,top=10,scrollbars=yes');
return false;
}



