function show( id,img,width,height){
		var location = '';
		var url = img;
		var title = 'Image';
		var obj;
		width = eval(width+4);
		height = eval(height+34);
		obj = window.open(url,title,'menubar=no,toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,resizable=no,fullscreen=no,channelmode=no,width='+width+',height='+height);
		obj.focus();
		return true;		
	}
	
	
	function writeConsole(content) {
 top.consoleRef=window.open('','myconsole',
  'width=900,height=250'
   +',menubar=0'
   +',toolbar=0'
   +',status=0'
   +',scrollbars=1'
   +',resizable=1')
 top.consoleRef.document.writeln(content)
 top.consoleRef.document.close()
 top.consoleRef.focus();
}
	
function show_popup( id){
		var location = '';
		var url = 'popup.php?id='+id;
		var title = 'Podglad';
		var obj;
		width = 1000;
		height = 300;
		obj = window.open(url,title,'menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,fullscreen=no,channelmode=no,width='+width+',height='+height);
		obj.focus();
		return true;		
}
