// JavaScript Document

var h = 840;
if (navigator.appVersion.indexOf("MSIE")!=-1){
	document.write("<style>#rightSide{ height:"+h+"px;}</style>");
}
else{
	document.write("<style>#rightSide{ min-height:"+h+"px;}</style>");
}

function warpSlogan(id){
	a = document.getElementById(id);
	b = a.innerHTML;
	c = b.length;
	if(c>70){
		a.innerHTML = b.substring(0,70)+"...";
	}
}