function navigation(id) {

	if ( id == 0 ) { location.href='../start/index.htm'; }
	if ( id == 1 ) { location.href='../news/index.htm'; }
	if ( id == 2 ) { location.href='../private/index.htm'; }
	if ( id == 3 ) { location.href='../company/index.htm'; }
	if ( id == 4 ) { location.href='../about/index.htm'; }
	if ( id == 5 ) { location.href='../media/index.htm'; }
	if ( id == 6 ) { location.href='../work/index.htm'; }
	if ( id == 7 ) { location.href='../contact/index.htm'; }

}

function popup(url){ 
	
	window.open(url,"Popup","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=600,height=600,top=100,left=100"); 

}


	function myFocus(element)
	{
	    if (element.value == element.defaultValue) 
	    {
       		element.value = '';
     	}
     }

	function myBlur(element) 
	{
		if (element.value == '') 
		{
			element.value = element.defaultValue;
		}
	}