function viewimage(imagesrc,winwidth,winheight){
var look='width='+winwidth+',height='+winheight+','
popwin=window.open("","",look)
//popwin.moveBy( 100,100);
popwin.document.open()
popwin.document.write('<title>Apartmani Mladiniæ</title><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
popwin.document.write('<link rel="stylesheet" type="text/css" href="iframe.css">');
popwin.document.write('<a href="javascript:this.window.close()"><img alt="Zatvori prozor" border="0" vspace="0" hspace="0" src="'+imagesrc+'"></a>');
popwin.document.write('</body>')
popwin.document.close()
}