// JavaScript Document
function set_session(value)
{
if(value == 'carrom') 
	{ //<?php $_SESSION['type']="carrom"; global $ses_type; $ses_type = $_SESSION['type']; ?>
   window.location="http://ambersports.psychegames.com/index.php?type=carrom";
   }
else if(value == 'track') 
	{ //<?php $_SESSION['type']="track"; global $ses_type; $ses_type = $_SESSION['type']; ?>
   window.location="http://ambersports.psychegames.com/index.php?type=track";
   }
else if(value == 'cricket') 
	{ //<?php $_SESSION['type']="cricket"; global $ses_type; $ses_type = $_SESSION['type']; ?>
   window.location="http://ambersports.psychegames.com/index.php?type=cricket";
   }
else 
	{ //<?php $_SESSION['type']="proboxing"; global $ses_type; $ses_type = $_SESSION['type']; ?>
   window.location="http://ambersports.psychegames.com/index.php?type=proboxing";
   }
   
}