if (/msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent)){
document.getElementById('display').style.height="250px";
document.getElementById('display').style.width="500px";
document.getElementById('main').style.width="900px";

}

else {

var openShadowbox = function(){Shadowbox.open({
	player:'html',
                height: 600,
width: 800,
         content:document.getElementById('display').innerHTML
	    })};
	if(window.onload) {
	  var temp = window.onload;
	  window.onload=function(e) {
	    temp(e);
	    openShadowbox();
	  };
	}
	else{
	  window.onload=function(e) {
	    openShadowbox();
	  };
	}
}
