﻿// KMG Software, Inc.
function imgRollOver(name,over)
{
	if(window.document.images) 
	{
		if (over) {
			window.document.images[name].src = "/Images/" + name + "_On.gif";
		}
		else {
			window.document.images[name].src =  "/Images/" + name + "_Off.gif";
		}
	}
}

function launchGallery(picName, imgWidth, imgHeight, alt) 
{
	newWindow = window.open("","newWindow","scrollbars=yes,width="+imgWidth+",height="+imgHeight+",left=" + ((screen.width - imgWidth)/2) + ",top=" + ((screen.height-imgHeight)/2));
	newWindow.document.open();
	newWindow.document.write('<html><title>'+alt+'</title><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">');
	newWindow.document.write('<img src='+picName+' width='+imgWidth+' height='+imgHeight+' alt='+alt+'>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}	