
		/*************************************
			Web site design and development by
			Imaginary Designs, 2004
			ALL RIGHTS RESERVED

			dave@imaginary-designs.com
		*************************************/

//--------------------------
function mangleEmail(inEmail, inUrl)
{
	var encodedEmail = new String(inEmail);
	var decodedEmail = "";

	//starts on the 2nd index value, then takes 
	//ever other value after that to create
	//email address.
	for (var i=1; i <= encodedEmail.length; i++ )
	{
		//is the number odd?
		if ((i % 2) != 0)
		{
			decodedEmail += encodedEmail.charAt(i);
		}
	}

	var email_string = '<a href="mailto:';
		email_string+= decodedEmail;
		email_string+= '@'+inUrl+'">';
		email_string+= decodedEmail;
		email_string+= '@'+inUrl+'</a>';

	document.write(email_string);
}



//------------------------------------------
function popImageWindow( url )
{
	var width=750;
	var height=525;
	
	imageViewerWindow = window.open( ""+url+"","ImageViewer","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + width + ",height=" + height );
}


