<!--
function new_window(URL){
	window.open(URL,'StornesNET','scrollbars=no,menubar=no,height=690,width=1000,resizable=yes,toolbar=no,location=no,status=no'); // Open new window, specify url
}

function startingpage(){
	window.location.href="http://www.stornes.net/intra/index.php"; // Redirect to intra/index page
}

function close_window() {
  window.opener.location.href = window.opener.location.href;

  if (window.opener.progressWindow)
		
 {
    window.opener.progressWindow.close()
  }
  window.close();
}

function bookmark(URL,Name){ // Bookmark current page
	if (window.external){window.external.AddFavorite(URL,Name)}
	else {alert("Bookmark Stornes.NET by choosing 'bookmark/favorites' in your web browser");}

}

function confirmation(){ // Confirm action
	var agree=confirm("Are you sure you want to continue?");
	if (agree) return true;
	else return false;
}

function show_hide(id, show) { // Show and hide element
        if (el = document.getElementById(id)) {
                if (null==show) show = el.style.display=='none';
                el.style.display = (show ? '' : 'none');
        }
}
