// JavaScript Document
function nude_content_gate()
{
	var ok = confirm("This page contains nude material, and may be objectionable to some persons.\nThis material is intended for mature audiences only.\nPress OK if you are of legal age and do not find nude images offensive.")
	if (ok == true)
	{
		window.location = "http://chicagoimpressionism.com/nudegallery.html";
	}
	else 
	{
		window.location = "http://chicagoimpressionism.com/index.html";	
	}
}