function showImage(src, width, height) {
       
       w=0;
       h=0;
       w = width + 40;
       h = height + 40;
		
        var Win = window.open('image.php?src='+src+"&width="+width+"&height="+height, "displayWindow",'width=' + w + ',height=' + h + ',resizable=0,scrollbars=yes,menubar=no' );
}

function favorite() 
{
	if(window.opera && window.print)
	{ 
		var mbm = document.createElement('a');
		mbm.setAttribute('rel', 'sidebar');
		mbm.setAttribute('href',  document.location.href);
		mbm.setAttribute('title', document.title);
		mbm.click();
	}
	else
	if(document.all)
	{
		window.external.AddFavorite(document.location.href, document.title);
	}
	else
	if(window.sidebar) 
	{ 
		window.sidebar.addPanel(document.title, document.location.href, ""); 
	}
}
