function SwapImage( imageId, imagePath )
{
   if( document.getElementById )
   {
      document.getElementById( imageId ).src = gsAppPath + "/images/"+ imagePath;
   }
}

function imageNotAvailable(img)
{
 
  document.getElementById( img ).src = gsAppPath +"/images/noPic.gif";;    
  return true;
}

function LaunchPreview( pageName )
{
   window.open( gsAppPath +"/admin/preview.aspx?id="+ pageName );
}


function DisplayProducts( ctrl )
{
   if( document.getElementById )
   {
      var div = document.getElementById( ctrl );
      if( div.className != "divHidden" )
      {
         div.className = "divHidden";
      }
      else
      {
         div.className = "divDisplay";
      }
   }
}  

//==========================================================================
//==========================================================================
function Open( rct )
{
   var url = "product-info.aspx?RCTNO="+ rct;

   var attributes = 'toolbar=no,scrollbars=yes,resizable=yes'
               + ",height=400,width=280";
               
   window.open( url, '_blank' , attributes );
}
