<!--


window.resizeTo(850,720)
window.moveTo(0,0);
// Elliotts scroll bar issue in firefox and other none compatible browser

var oInterval = ""; 
function fnStartInterval(){ 
   oInterval = window.setInterval("fnRecycle()",1); 
} 
function fnRecycle(){ 
   window.scrollTo(0, 0) 
} 


//-->

