var y1 = 0;   // change the # on the left to adjuct the Y co-ordinate
var dom;
(document.getElementById) ? dom = true : dom = false;

function placeIt() 
{
	if (dom && !document.all) 
	{
		window.status = "dom && !document.all";
		if (window.pageYOffset < 128)
			document.getElementById("foto_links").style.top = "128px";
		else
			document.getElementById("foto_links").style.top = window.pageYOffset + (window.innerHeight - (window.innerHeight-y1)) +'px';
	}
	if (document.all)
	{
		if (document.documentElement.scrollTop < 128)
			document.getElementById("foto_links").style.top = "128px";
		else
			document.getElementById("foto_links").style.top = document.documentElement.scrollTop + (document.documentElement.clientHeight - (document.documentElement.clientHeight)) +'px';
	}

	window.setTimeout("placeIt()", 1); 
}

function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(function(){placeIt();});


