function google_ad_vertical_right_pos(){
if(document.all){

if(document.body.offsetWidth < 775){
leftpos = 775 + 20 + "px";
}
else{
leftpos = (document.body.offsetWidth - 775)/2 + 775 + 20 + "px";
}

}else{

if(document.width < 775){
leftpos = 775 + 20 + "px";
}
else{
leftpos = (document.width - 775)/2 + 775 + 20 + "px";
}

}

document.getElementById('google_ad_vertical_right').style.left = leftpos;
//alert(document.getElementById('google_ad_vertical_right').style.left);


}

