if ( (document.location + "").indexOf("http://i.word.com") >= 0 )
	{		// Output the stylesheet.
			document.write
				(	'<link rel="stylesheet" type="text/css" href="/apps/references/iphone/styles/global_iphone.css"  />'
				);

			// Output Art/Illustration specific styles.
			document.write
				(	'<style type="text/css">\n' + 
						'body { background: url(/apps/references/iphone/images/app-bar/interface-background.jpg) repeat-x left -5px; font-size: 15px; width: 100%; }\n' + 
						'body > img, body > table { padding: 5px; }' + 
					'</style>'
				);

			// Output  the application bar.
			document.write
				(	'<div id="app-bar">' + 
						'<div class="art-table-view">' + 
							'<input class="button-back" type="button" onclick="history.go(-1); return false;" />' +
						'</div>' +
					'</div>'
				); 
	}; // if ( (document.location + "").indexOf("http://i.word.com") >= 0 )