function 	swapimage(url) {

	if (document.images) {

		document.images.productimage.src = url.src
		
		popimageurl = url;
	
	}

}

function	popimage() {

	var picURL = popimageurl.src;

	var x = (screen.width - popimageurl.width) / 2;
	
	var y = (screen.height - popimageurl.height) / 2;

	var newWindow = window.open(picURL, 'newWin', 'width=' + popimageurl.width + ', height=' + popimageurl.height + ', left = ' + x + ', top = ' + y)
	

	newWindow.document.write('<html><head><title>The USB Super Store<\/title><\/head><body background="' + picURL + '"><\/body><\/html>');
	
	newWindow.resizeBy(popimageurl.width - newWindow.document.body.clientWidth, popimageurl.height - newWindow.document.body.clientHeight);
	
	newWindow.focus();

}
