function bgcenter() {

	 if(document.all)  {
    		with(content) {
		      style.top    = document.body.scrollTop + Math.floor((Number(document.body.clientHeight) - 450) / 2)
      			style.left   = document.body.scrollLeft + Math.floor((Number(document.body.clientWidth) - 668) / 2)
   			 }
 	}
  	else  {
	    document.getElementById("content").style.top    = window.pageYOffset + Math.floor((innerHeight - 450) / 2)
    	document.getElementById("content").style.left   = window.pageXOffset + Math.floor((innerWidth - 668) / 2)
   }
    return
}
