// JavaScript Document
<!----- location of a graphic on the page------->

function loaded()
{

	var start_point = 0;
	var screen_width = (navigator.appName == "Netscape")? window.innerWidth : document.body.offsetWidth;
	var screen_offset = (navigator.appName == "Netscape")? 0 : 0 ;
	var table_width = 750; // for example;
	var placedQuote = 10;

		if (screen_width > table_width)
		 {
				start_point = (( screen_width - table_width ) / 2 ); 
				 placedQuote = (start_point + placedQuote + screen_offset);

		 }
		document.getElementById("placedQuote").style.left = (placedQuote  + "px");
}
