function flash(path, w, h)
{ 
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+w+'" height="'+h+'">'
	+'<param name="allowScriptAccess" value="sameDomain" />'
	+'<param name="movie" value="'+path+'" />'
	+'<param name="menu" value="false" />'
	+'<param name="quality" value="best" />'
	+'<param name="wmode" value="opaque" />'
	+'<embed src="'+path+'" menu="false" quality="best" wmode="opaque" width="'+w+'" height="'+h+'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
	+'</object>');
}

function linkTo(link)
{
	location.href = document.getElementsByTagName('base')[0].href + link;
}

function showPhoto(x)
{
	document.getElementById('photoBox').src = 'media/gallery/'+x+'_midi.jpg';
}

function generateHeader(name, cl)
{
	var Img = 'templates/default/image/h.php?show='+name+','+cl;
	alert(Img.width);
	document.write('<img class="png" src="templates/default/image/h.php?show='+name+','+cl+'" width="" height="" alt="'+name+'" />');
}

doPrint = function(co)
{
    toPrint("OPB HOLDING", document.getElementById(co).innerHTML);
}

toPrint = function(title, content)
{
    content = content.replace('display: none','display: block');
    
    NewWindow=window.open("", "","width=800,height=600,toolbar=no,directories=no,menubar=no,locations=no,status=no,scrollbars=yes,resizable=no,fullscreen=no");
    NewWindow.document.open();

    NewWindow.document.writeln("<html>\n<head>\n</head>");
    NewWindow.document.writeln("<body leftmargin=10 topmargin=10 scroll=yes style=\"background-color:#ffffff; font-family: arial; font-size: 12px; line-height: 150%;\" onload=\"print();\">");
    NewWindow.document.writeln("<title>"+ title +"</title>");
    NewWindow.document.writeln("<style>");
    NewWindow.document.writeln("img { border: none; } table { font-family: arial; font-size: 12px; line-height: 150%; }");
    NewWindow.document.writeln("</style>");
    NewWindow.document.writeln("<table width=\"100%\"><tr><td>&nbsp;</td></tr><tr><td style=\"text-align: justify;\">");
    NewWindow.document.writeln(content);    
    NewWindow.document.writeln("</td></tr></table>");
    NewWindow.document.writeln("<br><br><hr size=\"1\" color=\"#666666\" style=\"background-color: #666; width: 100%; height: 1px;\" NOSHADE>");
    NewWindow.document.writeln("<table width=\"100%\"><tr><td>&copy;OPB HOLDING</td></tr></table>");
    NewWindow.document.writeln("</body>\n</html>\n");
    NewWindow.document.close();
    NewWindow.focus();
}

ReklamaOut = function()
{
	document.getElementById('Reklama').style.display = 'none';
	document.getElementById('Reklama').style.visibility = 'hidden';
}

clearField = function(obj){
	if (obj.value == 'e-mail ...') {
	obj.value = '';
	}
}