/* this is for sell form  */
function launchSell()
{
window.open("sellForm.php","","width=250,height=450,resizable=no,status=no,toolbar=no,scrollbars=no")
}

/* for directions page */
function launchMap()
{
window.open("liveMap.htm","","width=825,height=450,resizable=no,status=no,toolbar=no,scrollbars=no")
}



//These 2 functions are for the product page
//////////////////////////////////////////////////////////////////////////////////////
function changeFocused(image, text)
{   
    //document.getElementById('focusedItem').style.visibility = 'hidden';
    //document.getElementById('focusedItem').src = 'images/products/p005.gif';
  document.getElementById('focusedImg').src = image;
  document.getElementById('focusedTxt').value = text;
  //document.getElementById('balloon_container_' + Id + '').style.visibility = 'visible';
}

function revertFocused()
{
  document.getElementById('focusedImg').src = 'images/products/p076.gif';//featured.gif';
  document.getElementById('focusedTxt').value = '\n\nThis is just a small selection of our quality merchandise.  Check back soon for more!';
}
//////////////////////////////////////////////////////////////////////////////////////


/*
// distributed by http://hypergurl.com
var popup="Sorry, right-click is disabled.\n\nThis Site Copyright ©2007";
function noway(go)
{
  if(document.all)
  {
    if (event.button == 2)
    { 
      alert(popup);
      return false;
    }
  }
  if (document.layers)
  {
    if (go.which == 3)
    {
    alert(popup);
    return false;
    }
  }
}

if (document.layers) 
{
  document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=noway;
//////////////////////////////////////////////////////////////////////////////////////
*/

