// JavaScript Document
function updateContent(section){
    temp = section;
	document.getElementById('content').innerHTML = "<iframe scrolling='auto' width=531 height=100% frameborder=0 src="+temp+">Za potpun prikaz ove stranice potreban vam je Microsoft Internet Explorer 4.0 ili noviji!!!</iframe>";
}

function uvecajSliku(URLStr,s,v){
    refer = 'toolbar=0,status=0,menubar=0,scrollbars=0 height='+s+',width='+v+'';
	PreView = window.open('','',refer);
    PreView.document.open();
	PreView.document.write('<HTML><HEAD><title></title></HEAD>');
    PreView.document.write('<body leftMargin="0" topMargin="0" bottpmMargin="0" rightMargin="0">');
    PreView.document.write('<table border="0" cellspacing="0" cellpadding="0"><tr>');
	PreView.document.write('<td><img src="'+URLStr+'"></td></tr>');
	PreView.document.write('<tr><td bgcolor="#336699" align="right" height="13" valign="middle"><a href="#" onClick="javascript:window.close()"><img src="images/zatvoriButtUP.jpg" style="border:none"></td></tr></a>');
	PreView.document.write('</table></body>');
	PreView.document.write('</HTML>');
	PreView.document.close();
}

