/* Javascript Document */
function openWindow(thePage, theTitle, theOpts) {
	window.open(thePage, theTitle, theOpts);
}

function fitWindow() {
	x = document.images.model.width + 50;
	y = document.images.model.height + 150;
	
	window.resizeTo(x, y);
}