
function showfullsize(name,w,h) { 
	var left = (screen.width-w)/2;
	var top = (screen.height-h)/2;
	winUpload = window.open(name, "", "height="+h+",width="+w+",toolbar=no,resizable=1,status=no,screenx="+left+",screeny="+top+",left="+left+",top="+top);
}


function fitPic(altoPlus) {
	var NS = (navigator.appName=="Netscape")?true:false;
	iWidth = (NS)?window.innerWidth:document.body.clientWidth;
	iHeight = (NS)?window.innerHeight:document.body.clientHeight;
	iWidth = document.images[0].width - iWidth;
	iHeight = document.images[0].height - iHeight + altoPlus;
	window.resizeBy(iWidth, iHeight-1);
	self.focus();
};