/*    **********************************************************       Created by MissTiff.com on September 7, 2004 	 *********************************************************** */function getPassword(){	var pass1 = prompt("This is a secured area, please enter the password!","")	if(pass1 == "Wall Street Book")		window.location = "http://www.thechicagosource.com/images/wallstreet.pdf";	else if(pass1 == null)		window.location = "http://www.thechicagosource.com/illustration.html";	else 	{		alert("Incorrect password, please try again");		getPassword();	}		}
