function deletecomment( trackid, more, page, id )
{
	confirmdelete = confirm('Are you sure you want to delete the comment?\nThis action can not be undone!');
	if( confirmdelete != true )
	{
		return;
	}
	window.location = "gameCtrl.php?do=commentdelete&id=" + id + "&trackid=" + trackid + "&more=" + more + "&page=" + page;
}

function startGameSubmit( gameType )
{
	document.getElementById( "gametype" ).value = gameType;
	document.startGameForm.submit(); 
}


