



function gameReg(mpid)
{
	  var raw=jQuery.cookie('cbscomm_game');
	  //console.log('raw:'+raw);
	  reg_flag = 0;
	  if(null==raw){
		raw="";
	  }
	  //console.log(raw);
	  MPID = raw.replace(/"/g,'');
	  //console.log('MPID:'+MPID);
	  jammy = MPID.split(',');
	  //console.log('jammy length:'+jammy.length);
	  for(x in jammy){
		//console.log(x + ':'+jammy[x]);
		if (jammy[x]==mpid){
		  reg_flag = 1;
		}
	  }

	  //console.log(reg_flag);
	  //if (reg_flag == 1){
		//jQuery('#finale').html('Your cookie has the right MPID');
	  //}else{
		//jQuery('#finale').html('You do not have the correct MPID');
	  //}

	return reg_flag;
}

