
function Pic(Width,Height,Path,Name) {
	WinFeatures = "top=100,left=100,width="+Width+",height="+Height+",Status=no,toolbar=no,menubar=no,location=no,directories=no,scrollbars=no";
	BigW = window.open("","PictureWindow",WinFeatures);
	BigW.document.open();
	BigW.document.write("<head><title>"+Name+"</title></head>");
	BigW.document.write("<body bgcolor='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'><IMG src='"+Path+"' height='"+Height+"' width='"+Width+"' alt='"+Name+"'></body>"); 
	BigW.document.close();
}

function show(dokument,windowname) {
	window.open(dokument,windowname,"menubar=0,status=0,scrollbars=1,resizable=0,width=600,height=400");
}
