function winopen(url, w, h) {
x = screen.availWidth;
y = screen.availHeight;
if ((w+50 > x) || (h+50 > y) ) {
	wr = x-50;
	hr = y-50;
	res = "scrollbars=1";
} else {
	wr = w+50;
	hr = h+50;
	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>");
return (typeof(win)=='object') ? false : true;
}

