<!--

     var findWindow = null ;
     var isNS = (navigator.appName=="Netscape") ;
     var myBrowser = (isNS) ? "NS":"IE" ;
     var myCart = "" ;

     var strVer = navigator.appVersion ;
     var strShow = (isNS)?"show":"visible" ;
     var scrWidth = screen.width ;
     var intWidth = 0 ;
     var strWidth = "" ;

         window.defaultStatus = "GourmetSleuth.com" ;

// ************************************************************************************************
// Function used throughout GourmetSleuth.com.
// ************************************************************************************************

function popUp(thisPage, thisX, thisY, thisWidth, thisHeight){
         if (thisPage == ""){ return ; }
         if (thisX == ""){ thisX = 10 ; }
         if (thisY == ""){ thisY = 10 ; }
         if (thisWidth == ""){ thisWidth = 720 ; }
         if (thisHeight == ""){ thisHeight = 500 ; }

         if (findWindow != null && !findWindow.closed) findWindow.close() ;

         var popUp_Opts = "width=" + thisWidth + ",height=" + thisHeight + 
                          ",left=" + thisX + ",top=" + thisY + ",scrollbars,resizable" ;

         findWindow = window.open(thisPage, "", popUp_Opts) ;
         }

// -->