// (c) 2009. Riverturn Inc.
var RiverturnLogo = 
{
	logo_service_text:       "Developed & Hosted by",
	logo_image_file:         "http://www.riverturn.com/seals/riverturn-footer.png",
	logo_width:              "108",
	logo_height:             "72",
	alt_text:                "Riverturn Inc.",
	title_text:              "Riverturn Inc. - See how we can help you!",   
	destination_url:         "http://www.riverturn.com/solutions.php",
	text_color:              "#333",
	text_size:               "8px",
	line_spacing:            "10px",
	debug:                   false
};

document.writeln( '<style type="text/css">' );
document.writeln( 'div.riverturn {text-align:center;width:' + RiverturnLogo.logo_width + 'px;height:' + RiverturnLogo.logo_height + 'px; overflow:hidden}' );
document.writeln( 'div.riverturn span {margin:0;padding:0;font-weight:normal;font-size:' + RiverturnLogo.text_size + ';font-family:arial,helvetica,san-serif;line-height:' + RiverturnLogo.line_spacing + ';color:' + RiverturnLogo.text_color + ';}' );
document.writeln( 'div.riverturn a img{border:0px;margin:0px;text-decoration:none;}' );
document.writeln( '</style>' );
document.writeln( '  <span>' + RiverturnLogo.logo_service_text + '</span><br/>' );
document.writeln( '  <a href="'+RiverturnLogo.destination_url+'" target="_blank" title="' + RiverturnLogo.title_text + '">' );
document.writeln( '  <img src="'+RiverturnLogo.logo_image_file+'" alt="'+RiverturnLogo.alt_text+'" />' );
document.writeln( '  </a>' );

