function popup(strURL, strTitle, intWidth, intHeight) {
  var popUpWin = open('popup.php?Image=' + strURL + '&Title=' + strTitle, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizeable=no,copyhistory=yes,width=' + intWidth + ',height=' + intHeight + ',left=30,top=15');
}//function

doContentHeight = function() {
 intHeightNav = parseInt($('div#nav').height());
 intHeightContent = parseInt($('div#content').height());
 if (intHeightNav > intHeightContent) {
  $('div#content').height(intHeightNav - 200);
  if ($.browser.msie) {
  	if ($.browser.version == '6.0') {
    $('div#content').css('border-left', '16px solid #f9ebab');
   }//if
  	if ($.browser.version == '7.0') {
    $('div#content').css('border-left', '0');
    $('div#content').height(intHeightNav - 270);
   }//if
  }//if
 }//if
}//function

$(document).ready(function() {
 doContentHeight();
});