
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() 
{
	//check for mouse click
	if (window.event.type == 'mouseup' && event.srcElement.className != 'Nav')
		generateNewPage(event.srcElement);

	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}
	
function generateNewPage(srcImg)
{
	var newPage=window.open('','Large','width=800, height=600,resizable=yes,scrollbars=yes');
	newPage.document.write("<html><head><title>BlackBike Wheels - 818-341-2550</title></head><body bgcolor=#000000>");
	newPage.document.write("<center>");
	newPage.document.write("<p><a href='javascript:self.close()' style='font-family:arial;color:white;font-size=20'> Close Window</a></p><br><br><br>");
	newPage.document.write("<IMG border=1 width=400 bordercolor=000000 src='images/large/" + srcImg.name + "_large.jpg'>");
	newPage.document.write("</center></body></html>");
	newPage.document.close();
	if (window.focus) {newPage.focus()}
}
