function getObject(divName) {
	if(document.getElementById) {
		return document.getElementById(divName);
	}
	if (window.document[divName]) {
      		return window.document[divName];
  	}
  	if (navigator.appName.indexOf("Microsoft Internet")==-1) {
    		if (document.embeds && document.embeds[divName]) {
      			return document.embeds[divName]; 
		}
  	} else { // if (navigator.appName.indexOf("Microsoft Internet")!=-1)
    		return document.getElementById(divName);
  	}
}

function LoadImage(posy) {
	var mydiv = getObject("img-box");
	mydiv.style.backgroundPosition = posy;
}

function sp(url)
{
	var a=window.open(url,'pp','toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=420');
	return false;
}
