function SkocniWin(url, vHeight, vWidth ) {
if (vWidth == undefined)
	{vWidth == 500}
if (vHeight == undefined)
	{vHeight = 400}

leftVal = screen.width / 2 - vWidth / 2
topVal = screen.height / 2 - vHeight / 2

var SkocniWin = window.open(url,'','scrollbars=no,height=' + vHeight + ',width=' + vWidth +',left=' + leftVal + ',top = ' + topVal + ',resizable=yes,toolbar=no,location=no,status=no,menubar=no');
}

function PrintWin(url, vHeight, vWidth ) {
if (vWidth == undefined)
	{vWidth == 500}
if (vHeight == undefined)
	{vHeight = 400}

leftVal = screen.width / 2 - vWidth / 2
topVal = screen.height / 2 - vHeight / 2

var PrintWin = window.open(url,'','scrollbars=yes,height=' + vHeight + ',width=' + vWidth +',left=' + leftVal + ',top = ' + topVal + ',resizable=yes,toolbar=no,location=no,status=no,menubar=no');
}


function load() {
	window.status = "BOOOOO"
}
