var msg="-= Freight & Trading Weekly =-";
var scrollspeed=200;
function ScrollTitle() {
		document.title=msg;
		msg=msg.substring(1,msg.length)+msg.charAt(0);
		setTimeout("ScrollTitle()",scrollspeed);
}
ScrollTitle();

var type;

if (navigator.userAgent.indexOf("Opera") !=-1 && document.getElementById) type="OP";
if (document.all) type="IE";
if (document.layers) type="NN";
if (!document.all && document.getElementById) type="MO";