function selectBoxGo() {
	if (!document.getElementById('slctYearly')) return false;
  selectBox = document.getElementById('slctYearly');
  selectBox.onchange = function(){document.location.href=this.options[this.selectedIndex].value};
}
//*****The following function make it possible to have web standard popups**************************************************//
function strictNewWindow() {
  if (!document.getElementsByTagName('a')) return false;
  $('a.newwindow').click(function() {
		window.open($(this).attr('href'));
    return false;
	});
}
//*****Clear search text out search box on focus**************************************************//
function clearSubscribeBox() {
	if (!document.getElementById('mb-uibk-uibk')) return false;
	$('#mb-uibk-uibk').focus(function() {
    if ($(this).val() == 'Enter your email') {
      $(this).val('');
	  }
  });
}

//*****Load all functions**************************************************//
$(document).ready(function() {
  selectBoxGo();
  strictNewWindow();
  clearSubscribeBox();
});