/* Javascript Document */
function openWindow(page, title, inc) {
	window.open(page, title, inc);
}
function resizeWindow() {
	width = document.images.thePic.width + 100;
	height = document.images.thePic.height + 225;
	window.resizeTo(width, height);
}