imagesPath = "Products/";
productsPath = "swf/" + imagesPath;

function sizer() {
	if (navigator.appVersion.indexOf("AOL")>0){
		// no content
	}
 	else {
		iheight = document.photo.height;
		iwidth = document.photo.width;

		iwidth = iwidth + 40;
		iheight = iheight + 90;

		window.resizeTo(iwidth, iheight);
		window.focus();
	
		if (screen.width) {
			xmove = (screen.width - iwidth)/2;
			ymove = (screen.height - iheight)/2;
			window.moveTo(xmove,ymove);
		}
	}
}
function paintImage () {
	var query = top.location.search;
	var sImage = query.substring (query.indexOf("=") + 1, query.length);
	document.write("<img name='photo' src='"+productsPath + sImage+"'>");
}
function zoomProduct(productImage)
{
		window.open('zoom.html?image='+productImage,'zoom','width=300,height=200,status=no,menubar=no,toolbar=no,location=no');
}