// JavaScript Document
function bookmark(url, description){
  netscape="For Netscape Users, please hit CTRL+D to add a bookmark to www.bluebellpeople.com. Thankyou."
  if (navigator.appName=='Microsoft Internet Explorer'){
    window.external.AddFavorite(url, description);
  }else if (navigator.appName=='Netscape'){
    alert(netscape);
  }
}// end of bookmark()

function right(e){
  if ((event.button == 2 || event.button == 3)) {
    alert('Welcome to Jack Custom Tailors.');
    return false;
  }
  return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
  window.onmousedown=right;


function language(lang)
{
	if(lang!="US")
	{
		window.parent.location="http://www.google.com/translate?u=http%3A%2F%2Fwww.jackcustomtailors.com%2F&langpair=en%7"+lang;
	}
	else
	{
		window.parent.location="http://www.jackcustomtailors.com/";
	}
}
