function pvw( urlname )
{
	var w = 0;
	var h = 0;
	if( document.images )
	{
		prevImage = new Image;
		prevImage.src = urlname;
		w = parseInt( prevImage.width ) + 15;
		h = parseInt( prevImage.height ) + 15;
	}
	else
	{
		prevImage = "";
	}
	prevWin = window.open(urlname,"prevWin","resizable=yes,width=" + w + ",height=" + h);
}

// **** Email hiding below
function Email( address, server ) {
	var fullLink = '<a href="mailto:' + address + '@' + server + '">' + address + '@' + server + '</a>';
	var output = 'document.write(String.fromCharCode(';
	for( i = 0; i < fullLink.length; i++) {
		output += fullLink.charCodeAt( i ); // **** add character code to list of codes
		if( ( i + 1 ) != fullLink.length ) output += ', '; // **** make sure this is not the last code for the list
	}
	output += '));';
	eval( output );
}
// **** Email hiding above