/* browser snifer */
dom=(document.getElementById)?1:0;
ns6=(dom&&!document.all)?1:0;
if(!dom) alert('This site is not compatible with your browser!');
/* window positioning */
winw=(ns6)? window.innerWidth:document.body.offsetWidth;
if(winw<775)	document.write('<style>div.content{left:0px;margin-left:0px;}</style>')
winh=(ns6)? window.innerHeight:document.body.offsetHeight;
if(winh<460)	document.write('<style>div.content{top:0px;margin-top:0px;}</style>')
onresize=function(){self.location.reload()}