function openWin(page, width, height, winname, id)
{
  var url = page + ".asp" + "?listing=" + id;

  LeftPosition = (screen.width) ? (screen.width-(parseInt(width)))/2 : 0;
  TopPosition = (screen.height) ? (screen.height-(parseInt(height)))/2 : 0;

  var options = "location=no";
  options += ",menubar=no";
  options += ",scrollbars=no";
  options += ",resizable=no";
  options += ",top=" +TopPosition;
  options += ",left="+LeftPosition;
  options += ",width=" + width;
  options += ",height=" + height;
  
  popupWin=window.open(url,winname, options)
} 


function openListingWin()
{
  var url = "listingdetails.asp";
  var width = 865;
  var height = 580;
  var winname = "listing";

  LeftPosition = (screen.width) ? (screen.width-(parseInt(width)))/2 : 0;
  TopPosition = (screen.height) ? (screen.height-(parseInt(height)))/2 : 0;

  var options = "location=no";
  options += ",menubar=no";
  options += ",scrollbars=yes";
  options += ",resizable=no";
  options += ",top=" +TopPosition;
  options += ",left="+LeftPosition;
  options += ",width=" + width;
  options += ",height=" + height;
  
  popupWin=window.open(url,winname, options)
} 



function openListWin(listingNum, width, height)
{
  var url = "listingdetails.asp?num=" + listingNum ;
  var winname = "listing";

  LeftPosition = (screen.width) ? (screen.width-(parseInt(width)))/2 : 0;
  TopPosition = (screen.height) ? (screen.height-(parseInt(height)))/2 : 0;

  var options = "location=no";
  options += ",menubar=no";
  options += ",toolbar=no";
  options += ",scrollbars=no";
  options += ",resizable=no";
  options += ",top=" +TopPosition;
  options += ",left="+LeftPosition;
  options += ",width=" + width;
  options += ",height=" + height;
  
  popupWin=window.open(url,winname, options)
} 
