<!-- Hiding the code from non-java enabled browsers

// script for opening popupwindow
// call function in html in body tag like:
// <a href=javascript:popup('events_popup_awards.htm')></a>
function popup(site)
{
	location.reload();
	popup = window.open(site,"popup","scrollbars=yes,height=800,width=850,left=((screen.width-width)/2),top=((screen.height-height)/2)");
	popup.focus();
}

// script for moving back in browser historyy
// call function in html in body tag like:
// <a href=javascript:backhistory()></a>
function backhistory()
{
	location.reload();
	history.back();
}

// closing the popup
// call function in html in body tag like:
// <a href="javascript:clWin()">Fenster schliessen!</a>
function clWin(csite) 
{
	window.close(csite);
}

// End of hiding -->
