// JavaScript Document

function showImg(file,width, height) {
	
	height *= 1;
	width *= 1;
	height += 4;
	width += 4;
	res = window.open("http://www.tega-tennis.de/showImage.php?id="+file, "imgFullSize", "height="+height+",width="+width);
	
}

function showImgSmall(file,width, height) {
	
	height *= 1;
	width *= 1;
	height += 4;
	width += 4;
	res = window.open("http://www.tega-tennis.de/showImage.php?id="+file+"&small=1", "imgFullSize", "height="+height+",width="+width);
	
}

