window.onresize = function()
{
//dont reload, just reevaluate javascript - true reloads
//    window.location.reload(false);
window.location.replace( location.href )
}
var myscreenWidth = 0;
var myscreenHeight = 0;

//IE
if(!window.innerWidth)
{
	//strict mode
	if(!(document.documentElement.clientWidth == 0))
	{ 
		myscreenWidth = document.documentElement.clientWidth;
		myscreenHeight = document.documentElement.clientHeight;
	}
	//quirks mode
	else
	{ 
		myscreenWidth = document.body.clientWidth;
		myscreenHeight = document.body.clientHeight;
	}
}
//w3c
else
{ 
	myscreenWidth = window.innerWidth;
	myscreenHeight = window.innerHeight;
//    myscreenWidth=screen.availWidth;
//    myscreenHeight=screen.availHeight;
//    myscreenWidth=window.pageXOffset;
//    myscreenHeight=window.pageYOffset;
//   document.write(document.documentElement.clientWidth)
}
myscreenWidth=myscreenWidth-250-250-50;
//myscreenWidth=0
//document.write('<br>'+myscreenWidth)
//bleft = document.getElementById('buttons_left')
//bright = document.getElementById('buttons_right')
//document.write('<br>'+bleft.offsetLeft+','+bright.offsetLeft)
document.write('<table width='+myscreenWidth+' cellspacing=0 cellpadding=0>')
document.write('<tr>')
//document.write('<td style="padding-right:30px;"><img src="'+urlbase+'menu/logos/d_profile.jpg" height=70 style="display:inline;padding-right:12px;">')
document.write('<td><img src="'+urlbase+'menu/logos/d_profile.jpg" height=70 style="display:inline;padding-right:12px;">')
document.write('<img src="'+urlbase+'menu/logos/yellowbear_head.jpg" height=70 style="display:inline;padding-right:12px;">')
document.write('<img src="'+urlbase+'menu/logos/t_profile.jpg" height=70></td>')
document.write('<td class="noprint" align="left" style="font-weight:bold;font-style:italic;">')
document.write('&nbsp;&nbsp;Refresh Your Soul<br>')
document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Revive Your Spirit<br>')
document.write('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;')
document.write('&nbsp;Renew Your Strength')
document.write('</td>')
document.write('</tr>')
document.write('</table>')
