// Popup window for viewing fixed sized ads
// Programmed by: The Computer Mentor
// Copyright 2004 Bruce E. Kriebel

var dirWin ;
var zChrome ;

function salePicPopUp(picURL,iHeight,iWidth)
{
  iHeight = iHeight + 20;
  iWidth = iWidth + 20;
  zChrome = "menubar,status,resizable=yes,height=" + iHeight + ",width=" + iWidth ;
  dirWin=window.open(picURL,"dirWin",zChrome);
}