// load logo when not in iframe only 

var code = "<img src=\"http://www.uk-vps.com/images/logo_low_profile.png\" width=\"300\" height=\"60\" align=\"top\" alt=\"UK VPS Logo\">";

onload=function()  {  

if (window.parent.frames.length>0) { 
// do nothing
} 
else{
var txt=document.getElementById("vpslogo");
txt.innerHTML=code;
}

}



