
function get_cookie ( cookie_name )
{
  var results = document.cookie.match ( cookie_name + '=(.*?)(;|$)' );

  if ( results )
    return ( unescape ( results[1] ) );
  else
    return null;
}

function bobbleOrder ()
{
	var x = get_cookie ( "advert" );
	//alert(x);
	switch (x) {
	case ("WEEI"):
		document.location = "http://www.brocktonrox.com/merchandise/index.php?item_id=606&cat=149&sub=149";
		break
	default:
		document.location = "http://www.brocktonrox.com/merchandise/index.php?item_id=606&cat=149&sub=149";
		break
	}
}
