﻿function newpage(dropdownlist) {
    var url = dropdownlist.options(dropdownlist.selectedIndex).value;
if (url != "") 
{
    window.open(url);
} 
}
