<!--/*
Auto Maximize Window Script- By Nick Lowe (nicklowe@ukonline.co.uk)
For full source code, 100's more free DHTML scripts, and Terms Of Use
Visit http://www.dynamicdrive.com
*/
var newwin = null;
top.window.moveTo(0,0);
if (document.all){
	top.window.resizeTo(screen.availWidth, screen.availHeight);
}
else if (document.layers || document.getElementById){
	if (top.window.outerHeight < screen.availHeight || top.window.outerWidth < screen.availWidth)	{
		top.window.outerHeight = screen.availHeight;
		top.window.outerWidth = screen.availWidth;
	}
}function imageHighlight(object){
	object.style.filter = "alpha(opacity=100)";}function imageDim(object){
	object.style.filter = "alpha(opacity=40)";}function openImage(url, p){
	if(newwin != null)
		newwin.close();
			if(p==1)	// portrait
		newwin = window.open(url,'newwin','left=20,top=20,width=500,height=660,toolbar=0,resizable=0');	else		// landscape
		newwin = window.open(url,'newwin','left=20,top=20,width=660,height=500,toolbar=0,resizable=0');}
-->