function MaxScreen() {
	window.moveTo(0,0);
	window.resizeTo(window.screen.availWidth,window.screen.availHeight);
}

function showLargeImage(imgname, imgW, imgH) {
	imgW += 140;
	imgH += 140;
	window.open("/includes/showlargeimage.php?image="+imgname+"&w="+imgW+"&h="+imgH,"_blank","height=" + imgH + ",width=" + imgW + ",titlebar=no,resizable=yes,status=no,scrollbars=yes,toolbar=no,menubar=no,location=no");
}

function showdetail(option) {
	//alert(document.getElementById(option).style.display);
	if (document.getElementById(option).style.display == 'none') {
		document.getElementById(option).style.display = 'block';
	} else {
		document.getElementById(option).style.display = 'none';
	}
}
