if (isValidUrl())
{
	var done = false;
	var keyValue = document.location.href.split("=");
	if (keyValue == null || keyValue.length < 2)
	{
		document.location = "../common/error.html";
		done = true;
	}
	
	if (!done)
	{
		var key = keyValue[1];
		
		setCurrentPaintingKey(key);
		
		var paintingSet = new PaintingSet();
		var productSet = new ProductSet();
		
		var painting = paintingSet.getPainting(key);
		if (painting == null)
		{
			document.location = "../common/error.html";
			done = true;
		}
		
		if (!done)
		{
			var product = productSet.getProduct(key);
			if (product == null)
			{
				document.location = "../common/error.html";
				done = true;
			}
			
			if (!done)
			{
				/*
				if ((location.protocol != "http:" && location.protocol != "https:") || (location.hostname != "pinkneylaptop" && location.hostname != "localhost" && location.hostname != "mylespinkney.com" && location.hostname != "www.mylespinkney.com"))
				{
					document.location = "../common/error.html";
					done = true;
				}
				*/
				
				if (!done)
				{
					document.title = painting.title + " - The Myles Pinkney Online Gallery";
				}
			}
		}
	}
}
