function showHide(id) {
  var el;
  el = document.getElementById(id);
  el.style.display = (el.style.display == 'block') ? 'none' : 'block';
  return false; 
}

function print() {
	var printWindow = window.open('','Tisk',
		'height=850px, width=810px, top=0, left=100px, resizable=no, status=no, toolbar=no, menubar=yes,location=no, scrollbars=yes');
	printWindow.document.write('<html><head>');
//	printWindow.document.write(document.getElementsByTagName('head')[0].innerHTML);
	printWindow.document.write(
	'<base href="http://' + document.location.host + '" />'+
		'<link rel="stylesheet" href="/styles/print.css" type="text/css" media="print, screen"/>'+
	    '</head>'+
	    '<body>');
	printWindow.document.write(document.body.innerHTML);
	printWindow.document.write('</body></html>');
	printWindow.document.close();
	printWindow.focus();
	printWindow.print();
	
	return false;
}