function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		//btn_donate_over = newImage("images/btn_donate_over.jpg");
		preloadFlag = true;
	}
}

function closeWindow()
	{
	window.close();
	}

function openEnlarged(imageLoc,altText)
	{
	newWindow = window.open('','newWindow','menubar=no,scrollbars=yes,resizable=no,width=500,height=600');
	newWindow.focus();
	newWindow.document.writeln ('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">');
	newWindow.document.writeln ('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">');
	newWindow.document.writeln ('<head>');
	newWindow.document.writeln ('<title>Enlarged Image of '+altText+'</title>');
	newWindow.document.writeln ('<meta name="title" content="Skandisk" />');
	newWindow.document.writeln ('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />');
	newWindow.document.writeln ('<link href="styles.css" rel="stylesheet" />');
	newWindow.document.writeln ('<style type="text/css">body {background-image:none; background-color:#e6e7d9;}</style>');
	newWindow.document.writeln ('<script language="javascript" type="text/javascript">function closeWindow(){window.close();}</scr' + 'ipt\>');
	newWindow.document.writeln ('</head>');
	newWindow.document.writeln ('<body bgcolor="#e6e7d9">');
	newWindow.document.writeln ('<div align="center" style="padding-top:8px;"><table cellpadding="2" cellspacing="0" border="0">');
	newWindow.document.writeln ('	<tr>');
	newWindow.document.writeln ('		<td valign="top" bgcolor="#000000"><div align="center"><img name="enlarge" src="'+imageLoc+'" width="450" alt="Enlarged Image of '+altText+'" border="0" hspace="0" vspace="0"></div>');
	newWindow.document.writeln ('		<div class="whitecaption" align="center"><strong>Enlarged Image of &quot;'+altText+'&quot;</strong></div></td>');
	newWindow.document.writeln ('	</tr>');
	newWindow.document.writeln ('</table></div>');
	newWindow.document.writeln ('<p align="center"><a href="#" onclick="closeWindow(); return false;" onkeypress="closeWindow(); return false;">Close Window</a>&nbsp;&nbsp;</p>');
	newWindow.document.writeln ('</body>');
	newWindow.document.writeln ('</html>');
	newWindow.document.close();
	}