﻿// JavaScript Document
function OpenUrl(){
	if (document.getElementById("selectlink").selectedIndex!=0){
	window.location.href=document.getElementById("selectlink").options[document.getElementById("selectlink").selectedIndex].value;
	}
}
