function winopen(url, w, h) {
x = screen.availWidth;
y = screen.availHeight;
if (w+50 > x) {
	wr = x;
} else {
	wr = w+50;
}
if (h+50 > y) {
	hr = y;
} else {
	hr = h+50;
}
if ((w+50 > x) ||  (h+50 > y)) {
	res = "scrollbars=1";
} else {
	res= "scrollbars=0";
}
settings = "toolbar=0,location=0,"+res+",resizable=1,status=0,width="+wr+",height="+hr+"";
win = window.open("", "",  settings);
win.document.write("<html><body style=\"text-align: center;\"><a href=\"javascript:window.close();\"><img src=\""+url+"\" alt=\"Kliknìte pro zavøení okna\" width=\""+w+"\" height=\""+h+"\" border=\"0\" /><br />Kliknìte pro zavøení okna</a></body></html>");
win.moveTo((x-wr)/2,(y-hr)/2);
return (typeof(win)=='object') ? false : true;
}

