//thing.innerHTML=
// this the uppable copy 
function showthepic(){
var entrydiv= document.getElementById("blert");
entrydiv.style.display="block";
}
function squashitup() {
if (document.images[0]==undefined){
showthepic();
return;}
var turnip=document.images[0];
var startheight=turnip.height;
if (startheight<350){showthepic();return;}
var wideness=window.screen.availWidth;
var targethighness=window.screen.availHeight*0.66;
turnip.height=targethighness;
var changeratio=startheight/targethighness;
turnip.width=turnip.width/changeratio;
showthepic()
}


