//BREAKS THE PAGE OUT OF FRAMES
function breakout_of_frame()
{
  if (top.location != location) {
    top.location.href = document.location.href ;
	}
}

//HIDES THE POLLS TO BROWSERS THAT ARE NOT LARGE ENOUGH TO VIEW
var width = screen.width;

function polldisplay()
{	

	if (width > 800)
	{
		pollstuff.style.visibility="visible";
	}

}