// JavaScript Document

<!--
//	"MM_openBrWindow('/preporuci.asp','','width=220,height=200')"
	function preporuci() {
		
		var theURL 		= "/preporuci.asp"
		var winName		= ","
		var features	= "width=220,height=200"
		
		var winl = (screen.width  -220) / 2;
		var wint = (screen.height -200 ) / 2;
		features += ' top='+wint+',left='+winl+',noresize'
		
		window.open(theURL,'',features);
	}
//-->

