	function openNewWin (id) {

		var path = document.getElementById(id).href;
		var target = document.getElementById(id).target;
		document.getElementById(id).href = '#';
		document.getElementById(id).target = '';

		if(target == ''){
			path = document.getElementById(id).name;
		}

		/*alert(path);*/
		w=800
		h=600
		if (window.screen) {
			w = window.screen.availWidth;
			h = window.screen.availHeight;
		}
		/*alert(w + ' x ' + h);*/
		window.open(path, 'katalog' ,'status=yes,toolbar=no,menubar=yes,width='+w+',height='+h+',top=0,left=0');

		document.getElementById(id).name = path;
	
	}