window.onresize = init;
window.onload = init;

function init() {			// Aligns the page in the center/middle of the screen.
	if( document.all ) {
		var height = document.body.clientHeight;
		if( height < 500 ) {								// If low resolution screen sets position to relative
			document.all.middle.style.position = "static";
			document.all.inner.style.position = "static";
			return;
		}
		document.all.outer.style.height = ( height - 130 ) + "px";	
	}
	else if( document.getElementById ) {
		var height = window.innerHeight;
		document.getElementById( "outer" ).style.height = ( height - 130 ) + "px";	
	}
}

function noimage( size ) {
	var newImage = new Array();
	newImage[ 0 ] = "noimage100.gif";
	newImage[ 1 ] = "noimage188.gif";
	newImage[ 2 ] = "noimage375.gif";
	window.event.srcElement.src = "../formatting/graphics/" + newImage[ size ];
}