function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function OpenWebsite(select)
{
    len = select.length
    i = 0
    for (i = 0; i < len; i++) {
        if (select[i].selected) {
            if (select[i].value.length > 0) {
                window.open(select[i].value);
            }
        } 
    }
}


