function resize(ele,ele2,o){
	var a = document.getElementById(ele);
	var b = document.getElementById(ele2);
	var c = document.body.clientHeight;
	if(o != undefined)
		a.style.height = c -236+5+o+  "px";
	else
		a.style.height = c -236+5+  "px";
	if(o == undefined)
		b.style.height = parseInt(a.style.height) + "px";
}

window.onload = function(){
//	resize('contentbox','contentboxtd');


}
document.oncontextmenu = function(){
	//return false;
}

 if(top!=self)
 top.location=self.location;