function showpic(pic) {
/*	var htmlt = "<html><head><style> body { margin-top: 10px; text-align: center; background-color: black; color:white; } img { max-height: 500px; } </style></head><"
	htmlt = htmlt + "body"
	htmlt = htmlt + ">"
	htmlt = htmlt + "<img alt='' src='pictures/gallery_" + pic +".jpg' />"
	htmlt = htmlt + "<"
	htmlt = htmlt + "/body"
	htmlt = htmlt + "></html> "
	document.write(htmlt);
*/
	showpicx("pictures/gallery_" + pic + ".jpg");
}

function showpicx(pic) {
	var htmlt = "<html><head><style> body { margin-top: 10px; text-align: center; background-color: black; color:white; } img { max-height: 5000px; } </style></head><"
	htmlt = htmlt + "body"
	htmlt = htmlt + ">"
	htmlt = htmlt + "<img alt='' src='" + pic +"' />"
	htmlt = htmlt + "<"
	htmlt = htmlt + "/body"
	htmlt = htmlt + "></html> "
	document.write(htmlt);	
}

function checkbrowser() {
	if (navigator.appName == "Microsoft Internet Explorer") {
		window.status = "To be able to experience this page fully, a real browser like FireFox is necessary..."
	}
}

