function loadup(){
}

function firstposition() {
var screenheight = getCookie("bpheight");
if (screenheight == ""){
var myheight = screen.height;
if (myheight == 600){
var e = document.getElementById("container");
var topMargin = -200;
e.style.marginTop = topMargin + "px";
}
}
}

function bpcookies(){
var bpheight = screen.height;
document.cookie = "bpheight=" + bpheight
}
