	function printSearchBoxDVH(opt) {
	          if (opt) o = opt;
	          else o = new Object();
	          setup();

	          if (!o.width) o.width = 200;

	          var html = '<div style="text-align:center; margin-top:5px; border:0px #000 solid;">';
	          html += '<table style="border: none; width: '+o.width+'px; border-collapse: collapse;">';
	          if (!o.doNotShowTitle) {
		          html += '<tr>';
		          html += '<td style="font-weight: bold;">S&oslash;k i papirutgaven:</td>';
		          html += '</tr>';
	          }
	          html += '<tr>';
	          html += '<td width="100%" style="text-align: center;">';
	          html += '<form target="_blank" action="'+o.baseUrl+'/mediaport/tools.htm" method="GET">';
	          html += '<input type="hidden" name="action" value="search"/>';
	          if (o.pid) {
		          html += '<input type="hidden" name="pid" value="'+o.pid+'"/>';
	          }
	          html += '<input type="text" value="" name="q" style="font-size:10px; width: '+(o.width-8)+'px; color:#000000; background-color:#fff; border:1px #8295BF solid;"/><br/>';
	          //html += '<a href="'+baseUrl+'/mediaport/search.htm?searchType=advanced" style="font-size: 10px; color: black; font-weight: bold; text-decoration: none;">Avansert s&oslash;k &raquo;</a><br/>';
//	          html += '<input type="submit" value="S&oslash;k" name="search" style="width: 80px; font-size:10px; color:#000000; background-color:#FFFFFF; font-weight:bold"/>';
	          html += '<input type="image" src="grafikk/sok.gif" value="S&oslash;k" name="search" style="float:right; margin:5px 3px 5px 0"/>';
	          html += '</form>';
	          html += '</td>';
	          html += '</tr>';
	          html += '</table>';	
	          html += '<div style="border-bottom:0px #ff0000 solid;"><a href="'+o.baseUrl+'"><img style="border: none;" width="129" src="grafikk/bunnLogoBaR.gif"></a></div>';
//	          html += '    <img style="border: none; width: '+(o.width-6)+'" width="'+(o.width-6)+'" src="grafikk/bunnLogoBuyandRead.jpg">';
	          html += '</div>'; 
	
	          document.write(html);
	
          }

