function showPic (name,cat) {
	location.href = "viewer.php?id="+name+"&cat="+cat;
}
function makeSize(){
	mywidth = document.getElementById('img').width;
	myheight = document.getElementById('img').height;
	if(myheight > 550) { myheight = 550; }
	if (navigator.appName == "Microsoft Internet Explorer"){
		window.resizeTo((mywidth + 26),myheight);
		}
	if (navigator.appName == "Netscape"){
		window.innerWidth = mywidth + 16;
		window.innerHeight = myheight;
		}
	self.focus();
}
