
function home()
	{
		if(!document.getElementById("header")) return false;
		var header = document.getElementById("header");
		
		header.onclick = function()
			{
				window.location.href = "default.asp";
			 }
	}
	
function contact()
	{
		if(!document.getElementById("bottom-contact")) return false;
		var bottom = document.getElementById("bottom-contact");
		
		bottom.onmouseover = function()
			{
				bottom.style.cursor = 'pointer';
			}
		
		bottom.onclick = function()
			{
				new kbox('kontakt2.asp',{type:'window',width:580,height:620});
			}
		
	}
	
window.onload = function()
	{
		home();
		contact();
	}
