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