function gotourl1() {
if(document.formname1.optionname1.selectedIndex != 0){
location.href = document.formname1.optionname1.options[document.formname1.optionname1.selectedIndex].value 
//location.href.target = 'new';
} 
}

function gotourl2() {
if(document.formname2.optionname2.selectedIndex != 0){
location.href = document.formname2.optionname2.options[document.formname2.optionname2.selectedIndex].value 
//location.href.target = 'new';
} 
}

function gotourl3() {
if(document.formname3.optionname3.selectedIndex != 0){
window.open(document.formname3.optionname3.options[document.formname3.optionname3.selectedIndex].value);
//location.href.target = 'new';
} 
}
