//Obie on the Street popup
var obieheight = 0
var obieimage = 0
function obieonstreetw()
{
document.write('&#149; <a href="javascript:obieonstreetpopup();"><b>Obie On The Street:</b> ' + obiename + '</a><br>');
}
function obieonstreetpopup()
{
  var obieonstreet=window.open('','name','height=' + obieheight + ',width=475');
  
  obieonstreet.document.write('<html><head><title>Obie on the Street: ' + obiename + '</title>');
  obieonstreet.document.write('<link rel="stylesheet" href="http://www.oberlin.edu/stupub/ocreview/review.css" type="text/css">');
  obieonstreet.document.write('</head><body>');
  obieonstreet.document.write('<img src="' + obieimage + '" alt="Obie On The Street" style="border: 2px #000 solid; margin-bottom: 5px">');
  obieonstreet.document.write('<br><strong class="caption"><a href="javascript:self.close()">    Close</a> this window.</strong>');
  obieonstreet.document.write('</body></html>');
  obieonstreet.document.close();
}