// JavaScript Document

function noScroll(){
	
	if(document.getElementById("pContent")){
	
		var pEl = document.getElementById("pContent");
		var desiredWidth = "290";
		
		var pElWidth = pEl.style.width;	
		if (pElWidth > desiredWidth){
			pEl.style.width = desiredWidth+"px";
		}
		
	}
}

onload = noScroll;
