// JavaScript Document
function Visit(form, i) {
// get the URL from options
var site = form.elements[i].selectedIndex;
// if it's not the first (null) option, go there
if( site >= 1 ) {
//top.location = form.elements[i].options[site].value;
window.open(form.elements[i].options[site].value, '_blank');
}
// and then reselect the null (it functions as a label)
form.elements[i].selectedIndex = 0;
}


