Resize popup window previewing dedication text

by jelane20

JavaScript

var EDITURL = window.location.href;
if (EDITURL.indexOf("honorRollPreview.asp?") > -1) {
//Sets width and height IE
self.resizeTo(120,250);
//Sets height all other browsers
window.outerHeight = 300;
};