function showPicture(img,title,vrsta){
	
	var newWindow
	var newContent
	newContent="<html><head><title>STEVIĆ, Protektirnica teretnih guma - SREMSKA MITROVICA</title>\n"
	newContent += "<meta http-equiv='Content-TYPE' content='text/html; charset=windows-1250'>\n"	
	newContent += "<script language=\"JavaScript\" type=\"text/javascript\">\n"
	newContent += "<!--\n"
	newContent += "<link rel=\"stylesheet\" href=\"style/style.css\">\n"
	newContent += "// -->\n"
	newContent += "</script>\n"
	newContent += "	</head>\n"
	newContent += "<body background='images/bgBody.jpg'><h3 align='center'></h3>\n"
	newContent += "<table height='100%' align=center>\n<tr>\n<td  valign=center align='center'><img src='images/track" + vrsta + ".gif' border='0' width='20' height='365'><img src='images/gume/" + img  +"' border=0 alt='" + title + "'><br>\n"
	newContent += "<div align=center><font class='K_Title" + vrsta + "'><b>" + title + "</b></font></div>\n"
	newContent += "<br><br><a href='javascript:self.parent.close()'><font color='#993300' size='2' face='verdana, sans-serif'>Zatvori</font></a\n>"
	newContent += "	</td>\n</tr>\n</table>\n</body>\n</html>"
	
	
	newWindow=window.open("","","height=500,width=600")
	newWindow.document.write(newContent)
	newWindow.moveTo(0,0)	
	newWindow.document.close()
}