
function popup(myUrl)
{
window.open(myUrl,'mywindow','scrollbars=yes, width=560px, height=490px; status=no, left=0, top=0, menubar=no, resizable=yes')
}

function pop_loc()
{
if (document.getElementById("state").options[document.getElementById("state").selectedIndex].value != "Default")
popup_loc(document.getElementById("state").options[document.getElementById("state").selectedIndex].value);
}

function popup_loc(loc)
{
window.open(loc + '.html','locationwindow','scrollbars=yes, width=820px, height=600px; status=no, left=0, top=0, menubar=no, resizable=yes')
}