// JavaScript Document
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=no,scrollbars=no,resizable=no,fullscreen=no,channelmode=no,width='+width+',height='+height);
		obj.focus();
		return true;		
	}