function jumpTo(s) {
	if (s.options[s.selectedIndex].value !='') {
		self.location.href = s.options[s.selectedIndex].value;
		return 1;
	}
}

	function openNewWindow(tempUrl,tempName,tempFeatures)
	{
		var adres = tempUrl;
		var ozellik = tempFeatures;
		var yenipencere = window.open(adres,'',ozellik,'');
	}