// check, ci je setnute blade_root_path - ak nie, setneme na /
if(!window.blade_root_path)
  blade_root_path = "/";

// otvorenie obrazku v novom okne - picture_show.php
function show_picture(source) {
  window.open(blade_root_path + "blade/picture_show.php?source=" + source, "", "toolbar=no,menubar=no,location=no,directories=no,scrollbars=no,resizable=no,status=no");
}

// otvorenie nahladu na tlac
function print_preview(params) {
  window.open(blade_root_path + 'blade/print.php?' + params, '', 'toolbar=no,menubar=no,location=no,directories=no,scrollbars=yes,resizable=no,status=no,height=600,width=750')	
}

// funkcie pre fotkovy tooltip
function doTooltip2(prvy, druhy) {
  if(window.doTooltip)
    doTooltip(prvy, druhy);
}

function hideTip2() {
  if(window.hideTip)
	hideTip();
}

// tooltip settings

// move tip when mouse moves over link
var tipFollowMouse = true;	
// set tipWidth wide enough for widest image
var tipWidth = 455;
// how far from mouse to show tip
var offX = 20;	
var offY = 12;
// text font properties
var tipFontFamily = "Verdana, arial, helvetica, sans-serif";
var tipFontSize= "11px";
var tipFontColor = "#000000";
// tip block settings
var tipBgColor = "#FFFFFF"; 
var tipBorderColor = "#c0c0c0";
var tipBorderWidth = 1;
var tipBorderStyle = "solid";
var tipPadding = 4;
