function openwin(link, width, height) {
	if(typeof(width)=="undefined") width = 720;
	if(typeof(height)=="undefined") height = 300;
	return window.open(link.href, "okno", "width="+width+",height="+height+",statusbar=no,scrollbars=yes,location=no,menubar=no,resizable=yes");
}