function showPreview(previewLink, previewImg, previewText)
{
  document.getElementById("previewImg").innerHTML='<a href="'+previewLink+'"><img src="pics/'+previewImg+'" alt="" /></a>'
  document.getElementById("previewText").innerHTML=previewText;
}

function JSL(url, jmeno, w, h) 
{
  okno = window.open("", jmeno, 'resizable=0,top=50,left=50,menubar=0,width=' + w + ',height=' + h);
	okno.document.write("<html><body style='margin:0px;padding:0px;' style='text-align:center;'><img src='"+url+"' onclick='window.close();' style='cursor: hand'></body></html>");
}

function JSL2(url, jmeno, w, h, scroll) {
		try{
			okno.close();
		}
		catch(e){}
    okno=open(url, jmeno, 'resizable=0,top=50,left=50,menubar=0,width=' + w + ',height=' + h + ',scrollbars='+scroll);
}
