﻿/**********************************************
  Redirectes to the search result page
**********************************************/
function Search(InputId, kategori)
{
	//alert(kategori);			
  var word = document.getElementById(InputId).value;

  var newLoc = '/settings/search.aspx?search=' + encodeURI(word);
  if (kategori != null && kategori != "")
    newLoc += '&category=' + encodeURI(kategori);
    
  location.href = newLoc;

	event.keyCode=0;
	event.cancelBubble=true;
	return false;
}

/**********************************************
  Opens a seperate window for printing the current page
**********************************************/
function PrintCurrentPage() {
  var path = window.location.pathname;
  var query = window.location.search;
  var completeURL = path + query + (query == "" ? "?" : "&") + "lg=print";
  window.open(completeURL, "Udskriv", "toolbar=false,menubar=false,scrollbars=yes,top=150,left=100,width=500,height=600");
}

/**********************************************
  Opens a seperate window for printing the current page
**********************************************/
function PersonPageChangeFilter(control) {
  if (control != null && control.value != "")
    location.href = control.value;
  else
    location.href = location.href;
}
