// JavaScript Document
function sc5(){
	
var scrollPos; 
if (typeof window.pageYOffset != 'undefined') { 
    scrollPos = window.pageYOffset; 
} 
else if (typeof document.compatMode != 'undefined' && 
      document.compatMode != 'BackCompat') { 
    scrollPos = document.documentElement.scrollTop; 
} 
else if (typeof document.body != 'undefined') { 
    scrollPos = document.body.scrollTop; 
} 


 document.getElementById("javascript.Div5").style.top=(scrollPos+document.body.clientHeight-document.getElementById("javascript.Div5").offsetHeight)+"px";
 
 document.getElementById("javascript.Div5").style.left=(document.body.scrollLeft+document.body.clientWidth-document.getElementById("javascript.Div5").offsetWidth)+"px";
 
}

function sc3(){
	var scrollPos; 
if (typeof window.pageYOffset != 'undefined') { 
    scrollPos = window.pageYOffset; 
} 
else if (typeof document.compatMode != 'undefined' && 
      document.compatMode != 'BackCompat') { 
    scrollPos = document.documentElement.scrollTop; 
} 
else if (typeof document.body != 'undefined') { 
    scrollPos = document.body.scrollTop; 
} 
//alert(scrollPos);

 document.getElementById("javascript.Div3").style.top=(scrollPos+document.body.clientHeight-document.getElementById("javascript.Div3").offsetHeight)+"px";
 
 document.getElementById("javascript.Div3").style.left=(document.body.scrollLeft)+"px";

}

function scall(){
 sc3();sc5();
 
}

window.onscroll=scall;
window.onresize=scall;
window.onload=scall;
