function changeDIV()
{
	  var myWidth = 0, myHeight = 0;
	  if( typeof( window.innerWidth ) == 'number' ) {
	    //Non-IE
	    myWidth = window.innerWidth;
	    myHeight = window.innerHeight - 25;
	  } else if( document.documentElement &&
	      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
	    //IE 6+ in 'standards compliant mode'
	    myWidth = document.documentElement.clientWidth;
	    myHeight = document.documentElement.clientHeight;
	  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
	    //IE 4 compatible
	    myWidth = document.body.clientWidth;
	    myHeight = document.body.clientHeight;
	  }
    myHeight=eval(myHeight)-133;
    myWidth=eval(myWidth)-360;
	//alert(myHeight);
	//alert(myWidth);
	o_DIV=document.getElementById("1");
	o_DIV.style.height=myHeight + "px";
	o_DIV.style.width=myWidth + "px";
}

function moveleft()
{
	s=document.getElementById("scrolldiv");
	s.scrollLeft=s.scrollLeft-10
	//alert(parseInt(s_DIV.scrollLeft));
	movedownvar=setTimeout("moveleft()",50)
}
function moveright()
{
	s=document.getElementById("scrolldiv");
	s.scrollLeft=s.scrollLeft+10
	//s_DIV.style.left=parseInt(s_DIV.style.left)+10
	moveupvar=setTimeout("moveright()",50)
}
function stopscroll()
{
	if (window.moveupvar) 
		clearTimeout(moveupvar)
	if (window.movedownvar) 
		clearTimeout(movedownvar)
}


			
