if (!Array.prototype.every)
{
  Array.prototype.every = function(fun /*, thisp*/)
  {
    var len = this.length;
    if (typeof fun != "function")
      throw new TypeError();

    var thisp = arguments[1];
    for (var i = 0; i < len; i++)
    {
      if (i in this &&
          !fun.call(thisp, this[i], i, this))
        return false;
    }

    return true;
  };
}

var nwindow = '';
var nlocation = 0;
function popupShippingMap(location) {
    
    if (nwindow.location && !nwindow.closed) 
	{
        nwindow.location.href = 'http://media.onestopinc.com/images/info/mill-direct-maps.jpg';
        nwindow.focus();
    } else 
	{
		switch (location) 
		{
			case 2:
				nwindow = window.open(
					'http://media.onestopinc.com/images/info/HanesOB2010.jpg', 'MillDirectShippingMap', 
					'width=612, height=576'
				);
				break;
			case 3:
				nwindow = window.open(
					'http://media.onestopinc.com/images/info/WhisperingPines2010.jpg', 'MillDirectShippingMap', 
					'width=612, height=576'
				);
				break;
			case 4:
				nwindow = window.open(
					'http://media.onestopinc.com/images/info/Badger2010.jpg', 'MillDirectShippingMap', 
					'width=612, height=576'
				);
				break;
			case 5:
				nwindow = window.open(
					'http://media.onestopinc.com/images/info/HartwellAuburn2010.jpg', 'MillDirectShippingMap', 
					'width=612, height=576'
				);
				break;
			case 9:
				nwindow = window.open(
					'http://media.onestopinc.com/images/info/RedKap2010.jpg', 'MillDirectShippingMap', 
					'width=612, height=576'
				);
				break;
			case 12:
				nwindow = window.open(
					'http://media.onestopinc.com/images/info/Champro2010.jpg', 'MillDirectShippingMap', 
					'width=612, height=576'
				);
				break;
			default:
				nwindow = window.open(
					'http://media.onestopinc.com/images/info/mill-direct-maps.jpg', 'MillDirectShippingMap', 
					'width=612, height=753'
				);
				break;
		}
		

    }    
    
}