<!-- start /home/danielk/dev/includes/puntersparadise/javascriptleagues.inc  DEBUG_TAG-->
competitionid = new Array();  

leagueName = new Array();  

sport = new Array();  

country = new Array();  

function addLeague(count, scompetitionid, ssport, scountry, sleagueName){     

        competitionid[count]=scompetitionid;     

        leagueName[count]=sleagueName;     

        sport[count]=ssport;       

        country[count] = scountry;   
}        



function fillCountries(ssport, scountry) {

        document.countryform.country.length = 1;        

        iLCount=1;     

	var lastcountry = "";

        for (iPop = 0; iPop <= competitionid.length; iPop++) {

                if (sport[iPop] == ssport && country[iPop] != lastcountry) {     

                        countryoption = new Option(country[iPop], country[iPop]);     

                        document.countryform.country.options[iLCount] = countryoption;     

                        document.countryform.country.options[iLCount].title = country[iPop];  

			if (country[iPop] == scountry) countryoption.selected = true;

                        iLCount++;

			lastcountry = country[iPop];

                } 

        }

}


function fillCountriesMulti(ssport, scountry) {

        document.countryformmulti.country.length = 1;        

        iLCount=1;     

	var lastcountry = "";

        for (iPop = 0; iPop <= competitionid.length; iPop++) {

                if (sport[iPop] == ssport && country[iPop] != lastcountry) {     

                        countryoption = new Option(country[iPop], country[iPop]);     

                        document.countryformmulti.country.options[iLCount] = countryoption;     

                        document.countryformmulti.country.options[iLCount].title = country[iPop];  

			if (country[iPop] == scountry) countryoption.selected = true;

                        iLCount++;

			lastcountry = country[iPop];

                } 

        }

}



function fillLeagues(ssport, scountry) {

        document.leagueform.competitionid.length = 1;        

        iLCount=1;     

        if (ssport == null || scountry == null) return;



	var lastwasmatch="false";

        for (iPop = 0; iPop <= competitionid.length; iPop++) {

                if (sport[iPop] == ssport && country[iPop] == scountry) {     

                        competitionoption = new Option(leagueName[iPop], competitionid[iPop]);     

                        document.leagueform.competitionid.options[iLCount] = competitionoption;     

                        document.leagueform.competitionid.options[iLCount].title = leagueName[iPop];  

                        iLCount++;

			lastwasmatch = "true";

                } else if (lastwasmatch == "true") {

			break;

		}

        }

}


function fillLeaguesMulti(ssport, scountry) {

        document.leagueformmulti.competitionid.length = 1;        

        iLCount=1;     

        if (ssport == null || scountry == null) return;

	var lastwasmatch="false";

        for (iPop = 0; iPop <= competitionid.length; iPop++) {

                if (sport[iPop] == ssport && country[iPop] == scountry) {     

                        competitionoption = new Option(leagueName[iPop], competitionid[iPop]);     

                        document.leagueformmulti.competitionid.options[iLCount] = competitionoption;     

                        document.leagueformmulti.competitionid.options[iLCount].title = leagueName[iPop];  

                        iLCount++;

			lastwasmatch = "true";

                } else if (lastwasmatch == "true") {

			break;

		}

        }

}





function selectSport()

{

	var ssport = document.sportform.sport.options[document.sportform.sport.selectedIndex].value;

	if(ssport == "die")

		return false;



	fillCountries(ssport);

	fillLeagues(null, null);



	document.countryform.country.focus();

	return true;

}


function selectSportMulti()

{

	var ssport = document.sportformmulti.sport.options[document.sportformmulti.sport.selectedIndex].value;

	if(ssport == "die")

		return false;



	fillCountriesMulti(ssport);

	fillLeaguesMulti(null, null);



	document.countryformmulti.country.focus();

	return true;

}



function selectCountry()

{

	var country = document.countryform.country.options[document.countryform.country.selectedIndex].value;

	if(country == "die")

		return false;

	var sport = document.sportform.sport.options[document.sportform.sport.selectedIndex].value;

	if (sport == "die") return false;



	fillLeagues(sport, country);



	document.leagueform.competitionid.focus();

	return true;

}


function selectCountryMulti()

{

	var country = document.countryformmulti.country.options[document.countryformmulti.country.selectedIndex].value;

	if(country == "die")

		return false;

	var sport = document.sportformmulti.sport.options[document.sportformmulti.sport.selectedIndex].value;

	if (sport == "die") return false;



	fillLeaguesMulti(sport, country);



	document.leagueformmulti.competitionid.focus();

	return true;

}



function selectLeague()

{

	var competitionid = document.leagueform.competitionid.options[document.leagueform.competitionid.selectedIndex].value;

	if(competitionid == "die")

		return false;

	document.leagueform.submit();

	return true;

}


function selectLeagueMulti()

{

	var competitionid = document.leagueformmulti.competitionid.options[document.leagueformmulti.competitionid.selectedIndex].value;

	if(competitionid == "die")

		return false;

	document.leagueformmulti.submit();

	return true;

}





<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(0,"1337","Curling","International","Olympic Games Men");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1,"1338","Curling","International","Olympic Games Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(2,"519","Curling","Curling","World Champs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(3,"1272","Curling","Curling","International");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(4,"1273","Curling","Curling","International (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(5,"1446","Athletics","International","Athletics Mens");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(6,"1447","Athletics","International","Athletics Womens");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(7,"1346","Surfing","International","Surfing WCT");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(8,"70","Snooker","International","Snooker");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(9,"59","Politics","International","Elections");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(10,"61","American Football","Canada","CFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(11,"15","American Football","USA","NFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(12,"46","American Football","USA","NFL Pre Season");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(13,"48","American Football","USA","College Football");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(14,"55","American Football","USA","Arena Football");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(15,"1264","American Football","USA","LFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(16,"1066","Water Polo","International","European Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(17,"1051","Water Polo","International","Olympic Games");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(18,"1050","Water Polo","International","Olympic Games (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(19,"1143","Water Polo","International","World Championship");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(20,"1241","Water Polo","International","FINA World League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(21,"1547","Water Polo","International","World Cup Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(22,"1488","Water Polo","International","European Championships (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(23,"1472","Water Polo","International","FINA Womens World League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(24,"994","Water Polo","Australia","NWPL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(25,"995","Water Polo","Australia","NWPL (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(26,"886","Water Polo","Croatia","1.Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(27,"964","Water Polo","Croatia","Croatian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(28,"933","Water Polo","Europe","Euroleague");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(29,"938","Water Polo","France","French League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(30,"878","Water Polo","Germany","DWL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(31,"879","Water Polo","Greece","A1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(32,"890","Water Polo","Hungary","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(33,"904","Water Polo","Hungary","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(34,"967","Water Polo","Italy","Italian League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(35,"1216","Water Polo","Italy","Italian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(36,"649","Horse Racing","American","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(37,"28","Horse Racing","Australia","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(38,"1396","Horse Racing","Canada","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(39,"1397","Horse Racing","Denmark","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(40,"1398","Horse Racing","France","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(41,"1399","Horse Racing","Germany","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(42,"1400","Horse Racing","Hong Kong","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(43,"1401","Horse Racing","Ireland","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(44,"1402","Horse Racing","Japan","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(45,"1419","Horse Racing","New Zealand","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(46,"1420","Horse Racing","Norway","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(47,"1403","Horse Racing","Singapore","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(48,"1404","Horse Racing","South Africa","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(49,"1405","Horse Racing","Sweden","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(50,"1406","Horse Racing","UAE","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(51,"148","Horse Racing","United Kingdom","Horse Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(52,"1071","Pesapallo","Finland","Superpesis");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(53,"1072","Pesapallo","Finland","Superpesis (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(54,"1085","Baseball","International","Olympic Games");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(55,"136","Baseball","International","World Baseball Classic");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(56,"1513","Baseball","International","European Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(57,"503","Baseball","International","Serie del Caribe");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(58,"1070","Baseball","Germany","Bundesliga North");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(59,"1069","Baseball","Germany","Bundesliga South");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(60,"1458","Baseball","Italy","A1 Baseball League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(61,"149","Baseball","Japan","Japanese Baseball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(62,"877","Baseball","Mexico","Mexican Baseball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(63,"1093","Baseball","South Korea","South Korean Baseball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(64,"39","Baseball","USA","MLB");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(65,"147","Baseball","USA","College Baseball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(66,"940","Baseball","Venezuela","Venezuelan Baseball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(67,"65","Olympic Games","Olympic","Games");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(68,"145","Trotting","Scandinavian","Trotting");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(69,"54","Boxing","International","Boxing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(70,"450","Table Tennis","Table","Tennis");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(71,"1451","Futsal","International","Asian Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(72,"732","Futsal","International","European Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(73,"1036","Futsal","International","World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(74,"1240","Futsal","International","Futsal International");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(75,"731","Futsal","International","Izmir International");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(76,"1552","Futsal","International","Club Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(77,"944","Futsal","Austria","Futsal Murexin Bundesliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(78,"776","Futsal","Belgium","1st Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(79,"707","Futsal","Brazil","Brazil League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(80,"956","Futsal","Czech Republic","Czech League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(81,"674","Futsal","Europe","UEFA Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(82,"1271","Futsal","Finland","Finland Futsal");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(83,"915","Futsal","Greece","Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(84,"1057","Futsal","Greece","Mens Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(85,"677","Futsal","Italy","Serie A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(86,"1381","Futsal","Italy","Futsal Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(87,"1277","Futsal","Netherlands","Futsal League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(88,"1256","Futsal","Poland","Ekstraklasa");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(89,"675","Futsal","Portugal","Portuguese League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(90,"1442","Futsal","Portugal","Futsal Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(91,"1243","Futsal","Romania","1st Division Futsal");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(92,"775","Futsal","Russia","Superliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(93,"989","Futsal","Russia","Russian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(94,"676","Futsal","Spain","Division de Honor");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(95,"1191","Futsal","Spain","Division de Plata Norte");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(96,"1192","Futsal","Spain","Division de Plata Sur");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(97,"1308","Futsal","Spain","Futsal Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(98,"144","Cycling","International","Cycling");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(99,"1389","Harness Racing","Australia","Harness Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(100,"1390","Harness Racing","Denmark","Harness Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(101,"1391","Harness Racing","Finland","Harness Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(102,"1392","Harness Racing","France","Harness Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(103,"1393","Harness Racing","New Zealand","Harness Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(104,"1394","Harness Racing","Norway","Harness Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(105,"1395","Harness Racing","Sweden","Harness Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(106,"45","Rugby Union","International","International Matches");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(107,"30","Rugby Union","International","World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(108,"1108","Rugby Union","International","Rugby Sevens World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(109,"1465","Rugby Union","International","Churchill Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(110,"1236","Rugby Union","International","International A's & Tour matches");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(111,"1268","Rugby Union","International","Rugby Sevens");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(112,"1548","Rugby Union","International","Womens World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(113,"1237","Rugby Union","International","International Matches Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(114,"1466","Rugby Union","International","U20 Rugby World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(115,"646","Rugby Union","Australia","Australian Rugby Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(116,"1126","Rugby Union","Australia","Shute Shield");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(117,"69","Rugby Union","Europe","Heineken Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(118,"451","Rugby Union","Europe","Challenge Cup Rugby");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(119,"951","Rugby Union","Europe","Magners League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(120,"844","Rugby Union","France","Top 14");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(121,"948","Rugby Union","France","Pro Division 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(122,"929","Rugby Union","Germany","German Rugby");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(123,"950","Rugby Union","Italy","Italian Rugby");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(124,"626","Rugby Union","New Zealand","ITM Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(125,"882","Rugby Union","South Africa","Currie Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(126,"843","Rugby Union","Spain","Division de Honor");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(127,"9","Rugby Union","Super 14","Super 14s");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(128,"67","Rugby Union","United Kingdom","Aviva Premiership");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(129,"952","Rugby Union","United Kingdom","LV Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(130,"371","Basketball","International","FIBA World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(131,"621","Basketball","International","European Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(132,"1357","Basketball","International","FIBA World Championships (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(133,"1064","Basketball","International","Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(134,"730","Basketball","International","European Internationals (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(135,"1533","Basketball","International","Sth American Champs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(136,"625","Basketball","International","U19 World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(137,"1536","Basketball","International","Womens Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(138,"1500","Basketball","International","Centrobasket");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(139,"1519","Basketball","International","Stankovic Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(140,"1534","Basketball","International","Sth American Champs (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(141,"1154","Basketball","International","U19 World Champs (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(142,"1509","Basketball","International","William Jones Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(143,"1518","Basketball","International","American & Caribbean Games BBL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(144,"1501","Basketball","International","Centrobasket Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(145,"618","Basketball","International","European U20 International");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(146,"1049","Basketball","International","Olympic Games (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(147,"1510","Basketball","International","William Jones Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(148,"1522","Basketball","International","Central American & Caribbean Games");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(149,"619","Basketball","International","European U20 International (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(150,"1155","Basketball","International","European U18 International");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(151,"1157","Basketball","International","European U18 International (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(152,"1483","Basketball","International","U17 World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(153,"1482","Basketball","International","U17 World Champs (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(154,"1553","Basketball","International","European (W) U16 International");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(155,"1496","Basketball","International","European U16 International");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(156,"888","Basketball","Argentina","Liga Nacional");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(157,"19","Basketball","Australia","NBL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(158,"1136","Basketball","Australia","SEABL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(159,"1560","Basketball","Australia","SEABL (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(160,"778","Basketball","Australia","WNBL (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(161,"124","Basketball","Austria","Bundesliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(162,"1198","Basketball","Austria","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(163,"656","Basketball","Austria","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(164,"455","Basketball","Belgium","Ethias Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(165,"1018","Basketball","Brazil","Campeonato Nacional");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(166,"819","Basketball","Bulgaria","Bulgarian A1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(167,"906","Basketball","Bulgaria","Bulgarian A1 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(168,"1312","Basketball","China","Chinese Basketball League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(169,"505","Basketball","Croatia","Croatian A1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(170,"1358","Basketball","Croatia","Basketball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(171,"476","Basketball","Cyprus","Cypriot A1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(172,"970","Basketball","Cyprus","Cypriot Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(173,"823","Basketball","Cyprus","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(174,"454","Basketball","Czech Republic","Mattoni NBL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(175,"1187","Basketball","Czech Republic","Basketball Extraliga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(176,"429","Basketball","Denmark","Basketligaen");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(177,"1282","Basketball","Denmark","Danish Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(178,"431","Basketball","Estonia","EMKL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(179,"118","Basketball","Europe","Euroleague");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(180,"119","Basketball","Europe","ULEB Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(181,"472","Basketball","Europe","Eurocup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(182,"132","Basketball","Europe","Adriatic League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(183,"430","Basketball","Europe","Baltic Basketball League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(184,"1298","Basketball","Europe","Eurocup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(185,"931","Basketball","Europe","Euroleague (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(186,"1318","Basketball","FIBA","Asia Champs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(187,"1520","Basketball","FIBA","Asia Stankovic Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(188,"1319","Basketball","FIBA","FIBA African Champs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(189,"1159","Basketball","FIBA","Asia Champs (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(190,"1160","Basketball","FIBA","FIBA America Champs (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(191,"1487","Basketball","FIBA","FIBA U18 Americas Champs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(192,"1484","Basketball","FIBA","U18 Asia Champs (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(193,"449","Basketball","Finland","Korisliiga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(194,"741","Basketball","Finland","Suomen Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(195,"766","Basketball","Finland","Basketball Wom SM-Sarja");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(196,"133","Basketball","France","Pro A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(197,"737","Basketball","France","Pro B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(198,"432","Basketball","France","LFB (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(199,"121","Basketball","Germany","Bundesliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(200,"746","Basketball","Germany","Basketball Pro B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(201,"962","Basketball","Germany","German Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(202,"1190","Basketball","Germany","DBBL (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(203,"128","Basketball","Greece","Greek A1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(204,"453","Basketball","Greece","Greek A2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(205,"739","Basketball","Greece","Greek Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(206,"892","Basketball","Hungary","Division A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(207,"1235","Basketball","Ireland","BBL Superleague");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(208,"1234","Basketball","Ireland","Basketball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(209,"125","Basketball","Israel","Basketball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(210,"1293","Basketball","Israel","Basketball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(211,"1326","Basketball","Israel","Premier League (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(212,"122","Basketball","Italy","Lega A1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(213,"433","Basketball","Italy","Lega A2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(214,"980","Basketball","Italy","Italian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(215,"723","Basketball","Italy","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(216,"923","Basketball","Italy","Lega A1 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(217,"887","Basketball","Japan","BJ League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(218,"1211","Basketball","Latvia","Basketball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(219,"718","Basketball","Lithuania","LKL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(220,"434","Basketball","Mexico","LNBP");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(221,"1507","Basketball","NBA","Summer League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(222,"129","Basketball","Netherlands","Eredivisie");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(223,"1408","Basketball","New Zealand","NZBL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(224,"461","Basketball","Norway","BLNO");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(225,"1499","Basketball","Phillipines","Fiesta Conference");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(226,"1189","Basketball","Phillipines","PBA");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(227,"126","Basketball","Poland","Ekstraliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(228,"1350","Basketball","Poland","BBL Puchar Polski");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(229,"818","Basketball","Poland","Ekstraliga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(230,"480","Basketball","Portugal","Liga Uzo");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(231,"1415","Basketball","Portugal","Taca de Portugal");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(232,"760","Basketball","Romania","Divizia A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(233,"759","Basketball","Romania","Divizia A (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(234,"443","Basketball","Russia","Superleague");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(235,"990","Basketball","Russia","Russian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(236,"841","Basketball","Russia","Superleague (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(237,"884","Basketball","Serbia","Nasa Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(238,"1152","Basketball","Serbia","Basketball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(239,"726","Basketball","Slovakia","Extraliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(240,"885","Basketball","Slovenia","1.A SKL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(241,"1153","Basketball","Slovenia","Basketball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(242,"820","Basketball","South Korea","KBL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(243,"913","Basketball","South Korea","KBL (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(244,"120","Basketball","Spain","ACB");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(245,"435","Basketball","Spain","LEB Basketball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(246,"993","Basketball","Spain","Spanish Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(247,"735","Basketball","Spain","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(248,"942","Basketball","Spain","LFB (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(249,"1125","Basketball","Swedan","Mens Basketligan");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(250,"475","Basketball","Switzerland","LNA");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(251,"428","Basketball","Turkey","TBL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(252,"1156","Basketball","Turkey","Basketball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(253,"1130","Basketball","Turkey","Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(254,"905","Basketball","Turkey","Supercup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(255,"37","Basketball","USA","NBA");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(256,"49","Basketball","USA","College Basketball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(257,"1022","Basketball","USA","College Basketball (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(258,"142","Basketball","USA","WNBA");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(259,"963","Basketball","USA","FIBA Americas League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(260,"783","Basketball","USA","NBA European Tour");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(261,"758","Basketball","Ukraine","Superliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(262,"127","Basketball","United Kingdom","BBL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(263,"919","Basketball","Venezuela","LPB");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(264,"134","Entertainment","International","Academy Awards");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(265,"1291","Entertainment","International","Golden Globe Awards");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(266,"1275","Entertainment","International","Grammy Awards");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(267,"1167","Entertainment","International","Miss World");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(268,"1347","Entertainment","International","BAFTAS");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(269,"1361","Entertainment","International","Golden Raspberry Awards");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(270,"1161","Entertainment","Australia","Australian Idol");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(271,"1309","Entertainment","Australia","JJJ Hottest 100");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(272,"1441","Entertainment","Australia","Logie Awards");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(273,"1356","Entertainment","Australia","So You Think You Can Dance");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(274,"1383","Entertainment","Canada","Canadian Idol");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(275,"141","Entertainment","Europe","Eurovision Song Contest");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(276,"1331","Entertainment","USA","American Idol");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(277,"1455","Entertainment","USA","Miss USA");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(278,"47","Golf","PGA","Golf");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(279,"135","Martial Arts","Mixed","Martial Arts");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(280,"1148","Bandy","International","Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(281,"1001","Bandy","International","World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(282,"874","Bandy","International","Club World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(283,"1325","Bandy","Europe","World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(284,"986","Bandy","Finland","Elite");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(285,"935","Bandy","Norway","Elite");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(286,"934","Bandy","Sweden","Elitserien");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(287,"959","Bandy","Sweden","Allsvenskan Mellers");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(288,"1423","Bandy","Sweden","Damallsvenkan");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(289,"447","Bandy","Sweden","Allsvenskan North");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(290,"448","Bandy","Sweden","Allsvenskan South");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(291,"1086","Field Hockey","International","Olympic Games");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(292,"1087","Field Hockey","International","Olympic Games (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(293,"1372","Field Hockey","Field","Field Hockey World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(294,"954","Field Hockey","Field","Hockey Champions Trophy");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(295,"1562","Field Hockey","Field","Field Hockey Womens World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(296,"1497","Field Hockey","Field","Women Champions Trophy");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(297,"1412","Field Hockey","Netherlands","Netherlands Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(298,"588","Beach Volleyball","International","Beach Volleyball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(299,"589","Beach Soccer","International","Beach Soccer");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(300,"1386","Greyhound Racing","Australia","Greyhound Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(301,"1388","Greyhound Racing","New Zealand","Greyhound Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(302,"1387","Greyhound Racing","United Kingdom","Greyhound Racing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(303,"468","Volleyball","International","World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(304,"1046","Volleyball","International","European Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(305,"1044","Volleyball","International","Olympic Games");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(306,"1045","Volleyball","International","Olympic Games (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(307,"894","Volleyball","International","World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(308,"548","Volleyball","International","FIVB World League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(309,"549","Volleyball","International","CEV European League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(310,"1215","Volleyball","International","Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(311,"1244","Volleyball","International","Grand Champions Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(312,"1504","Volleyball","International","U20 European Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(313,"467","Volleyball","International","World Championships (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(314,"1537","Volleyball","International","World Grand Prix");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(315,"1297","Volleyball","International","Asian Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(316,"1523","Volleyball","International","Asian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(317,"1493","Volleyball","International","Boris Yeltsin Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(318,"1549","Volleyball","International","Hubert Wagner Memorial");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(319,"1505","Volleyball","International","U20 Euro Championships (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(320,"893","Volleyball","International","World Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(321,"1060","Volleyball","International","World Grand Prix (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(322,"728","Volleyball","International","European Championships (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(323,"1476","Volleyball","International","European League (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(324,"1467","Volleyball","International","Internationals (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(325,"1521","Volleyball","International","Piemonte Womens Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(326,"1230","Volleyball","International","World Grand Champions Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(327,"1477","Volleyball","International","Pan-Am Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(328,"1231","Volleyball","Argentina","Argentinian Volleyball League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(329,"672","Volleyball","Austria","AVL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(330,"832","Volleyball","Austria","AVL (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(331,"1222","Volleyball","Austria","Austrian VB Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(332,"1295","Volleyball","Austria","Austrian Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(333,"807","Volleyball","Belgium","Division One");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(334,"1262","Volleyball","Belgium","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(335,"774","Volleyball","Belgium","Division One (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(336,"1263","Volleyball","Belgium","Womens Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(337,"965","Volleyball","Brazil","Supa Lig");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(338,"745","Volleyball","Brazil","Mens Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(339,"966","Volleyball","Brazil","SupaLig (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(340,"1128","Volleyball","Bulgaria","Mens Volleyball League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(341,"1129","Volleyball","Bulgaria","Womans Volleyball League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(342,"1292","Volleyball","Bulgaria","Volleyball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(343,"924","Volleyball","Croatia","Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(344,"1289","Volleyball","Croatia","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(345,"925","Volleyball","Croatia","Division 1 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(346,"1257","Volleyball","Croatia","Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(347,"669","Volleyball","Czech Republic","Extraliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(348,"955","Volleyball","Czech Republic","Extraliga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(349,"771","Volleyball","Denmark","Eliteserien");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(350,"1127","Volleyball","Denmark","Eliteserien (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(351,"1445","Volleyball","Estonia","Salestar Liiga Volley (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(352,"830","Volleyball","Europe","Champions League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(353,"865","Volleyball","Europe","CEV Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(354,"1316","Volleyball","Europe","CEV Challenge Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(355,"482","Volleyball","Europe","Middle European League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(356,"1270","Volleyball","Europe","CEV Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(357,"949","Volleyball","Europe","Champions League (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(358,"1317","Volleyball","Europe","CEV Challenge Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(359,"748","Volleyball","Finland","SM-Liiga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(360,"880","Volleyball","Finland","SM-Liiga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(361,"785","Volleyball","Finland","Finnish Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(362,"784","Volleyball","Finland","Finnish Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(363,"733","Volleyball","France","Pro A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(364,"822","Volleyball","France","Pro A (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(365,"381","Volleyball","Germany","Bundesliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(366,"1335","Volleyball","Germany","2.Bundesliga Nord");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(367,"1421","Volleyball","Germany","2.Bundesliga Sud");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(368,"968","Volleyball","Germany","German Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(369,"763","Volleyball","Germany","Bundesliga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(370,"824","Volleyball","Germany","2.Bundesliga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(371,"969","Volleyball","Germany","German Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(372,"379","Volleyball","Greece","A1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(373,"999","Volleyball","Greece","A1 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(374,"1438","Volleyball","Greece","Volleyball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(375,"380","Volleyball","Italy","Campeonato A1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(376,"755","Volleyball","Italy","Campeonato A2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(377,"1225","Volleyball","Italy","Italy VB Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(378,"655","Volleyball","Italy","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(379,"808","Volleyball","Italy","Serie A1 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(380,"1302","Volleyball","Italy","Serie A2 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(381,"1269","Volleyball","Japan","V League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(382,"1261","Volleyball","Japan","V League Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(383,"1279","Volleyball","Morocco","Super League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(384,"875","Volleyball","Netherlands","Eredvisie");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(385,"833","Volleyball","Netherlands","Eredivisie (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(386,"750","Volleyball","Norway","Elite");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(387,"751","Volleyball","Norway","Elite (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(388,"1265","Volleyball","Norway","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(389,"1266","Volleyball","Norway","Womens Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(390,"1485","Volleyball","Peru","Peruvian Apertura Volleyball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(391,"1511","Volleyball","Peru","Peruvian Liga Volleyball (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(392,"753","Volleyball","Poland","PLS");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(393,"939","Volleyball","Poland","LSK (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(394,"1307","Volleyball","Poland","Volley Puchar Polski");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(395,"1431","Volleyball","Poland","Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(396,"761","Volleyball","Portugal","A1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(397,"756","Volleyball","Romania","Divizia A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(398,"757","Volleyball","Romania","Divizia A (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(399,"1223","Volleyball","Romania","Romanian VB Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(400,"1294","Volleyball","Romania","Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(401,"781","Volleyball","Russia","Super League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(402,"749","Volleyball","Russia","Russian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(403,"782","Volleyball","Russia","Super League (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(404,"659","Volleyball","Russia","Russian Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(405,"1209","Volleyball","Serbia","Volleyball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(406,"1366","Volleyball","Serbia","Volleyball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(407,"1210","Volleyball","Serbia","Volleyball Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(408,"1380","Volleyball","Serbia","Volleyball Cup Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(409,"1254","Volleyball","Slovakia","Volleyball Extraliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(410,"1232","Volleyball","Slovenia","Volleyball League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(411,"1233","Volleyball","Slovenia","Volleyball League Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(412,"1005","Volleyball","South Korea","KVL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(413,"1556","Volleyball","South Korea","IBK Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(414,"768","Volleyball","South Korea","KOVO Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(415,"1557","Volleyball","South Korea","IBK Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(416,"1116","Volleyball","South Korea","KVL (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(417,"810","Volleyball","Spain","Superliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(418,"957","Volleyball","Spain","Superliga 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(419,"811","Volleyball","Spain","Superliga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(420,"1422","Volleyball","Spain","Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(421,"958","Volleyball","Spain","Superliga 2 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(422,"960","Volleyball","Sweden","Elitserien");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(423,"1031","Volleyball","Sweden","Elitserien (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(424,"773","Volleyball","Switzerland","NLA");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(425,"1368","Volleyball","Switzerland","NLA");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(426,"772","Volleyball","Switzerland","NLA (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(427,"1369","Volleyball","Switzerland","Womens Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(428,"1123","Volleyball","Turkey","Turkish Mens Volleyball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(429,"1124","Volleyball","Turkey","Turkish Womans Volleyball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(430,"1213","Volleyball","Turkey","Turkish Volleyball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(431,"1432","Volleyball","Turkey","Volleyball 2nd League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(432,"1221","Volleyball","Turkey","Turkish Volleyball Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(433,"1303","Volleyball","Turkey","Turkish Womens Volleyball 2nd Lg");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(434,"859","Volleyball","Ukraine","Superleague");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(435,"1255","Volleyball","Ukraine","Superleague (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(436,"1214","Volleyball","World Club","World Club Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(437,"1311","Volleyball","World Club","International Club Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(438,"1088","Lacrosse","International","European Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(439,"1364","Lacrosse","International","World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(440,"1000","Lacrosse","National","Lacrosse League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(441,"1459","Lacrosse","National","NCAA Lacrosse");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(442,"1084","Lacrosse","USA","Major League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(443,"616","Badminton","International","Badminton");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(444,"1008","Rugby League","International","World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(445,"33","Rugby League","International","World 7s");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(446,"10","Rugby League","Australia","NRL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(447,"1013","Rugby League","Australia","NRL Toyota Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(448,"1162","Rugby League","Australia","NSW Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(449,"1410","Rugby League","Australia","Queensland Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(450,"21","Rugby League","Europe","Super League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(451,"532","Rugby League","Europe","Challenge Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(452,"1362","Rugby League","Europe","Co-operative Championship");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(453,"1363","Rugby League","Europe","Co-operative Championship One");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(454,"1103","Rugby League","Europe","Northern Rail Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(455,"44","Rugby League","Representative","Representative Matches");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(456,"895","Pool","International","Pool");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(457,"115","Soccer","International","FIFA World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(458,"987","Soccer","International","Kings Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(459,"66","Soccer","International","Olympic Games");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(460,"583","Soccer","International","Olympic Games (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(461,"352","Soccer","International","U16 Victory Shield");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(462,"1118","Soccer","International","African Nations Championship");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(463,"130","Soccer","International","African Nations Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(464,"60","Soccer","International","Asian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(465,"58","Soccer","International","Copa America");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(466,"27","Soccer","International","Euro 2012");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(467,"68","Soccer","International","International Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(468,"1195","Soccer","International","WC Qualifiers Inter-Zone Playoffs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(469,"780","Soccer","International","World Cup Qualifiers - Africa");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(470,"779","Soccer","International","World Cup Qualifiers - Asia");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(471,"83","Soccer","International","World Cup Qualifiers - CONCACAF");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(472,"82","Soccer","International","World Cup Qualifiers - CONMEBOL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(473,"1054","Soccer","International","World Cup Qualifiers - Europe");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(474,"827","Soccer","International","World Cup Qualifiers - Oceania");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(475,"1456","Soccer","International","Asian Cup Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(476,"1083","Soccer","International","AFC Challenge Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(477,"474","Soccer","International","Asian Games");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(478,"81","Soccer","International","Confederations Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(479,"1506","Soccer","International","Confederations Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(480,"637","Soccer","International","El Ettehad Tournament");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(481,"979","Soccer","International","Granatkin Memorial Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(482,"982","Soccer","International","Gulf Olympic Teams Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(483,"617","Soccer","International","Pan American Games Soccer");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(484,"1180","Soccer","International","U16 Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(485,"191","Soccer","International","U17 Euro Championship");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(486,"343","Soccer","International","U17 Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(487,"578","Soccer","International","U17 World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(488,"346","Soccer","International","U18 Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(489,"192","Soccer","International","U19 Euro Championship");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(490,"347","Soccer","International","U19 Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(491,"341","Soccer","International","U20 Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(492,"582","Soccer","International","U20 World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(493,"194","Soccer","International","U21 Euro Championship");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(494,"342","Soccer","International","U21 Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(495,"1242","Soccer","International","U23 Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(496,"1096","Soccer","International","AFF Suzuki Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(497,"151","Soccer","International","Algarve Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(498,"550","Soccer","International","European Championship (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(499,"542","Soccer","International","FIFA World Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(500,"365","Soccer","International","Friendlies (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(501,"1278","Soccer","International","SE Asian Games (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(502,"1172","Soccer","International","U17 Internationals (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(503,"1042","Soccer","International","U17 UEFA Championship (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(504,"1555","Soccer","International","U17 World Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(505,"1179","Soccer","International","U18 Internationals (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(506,"367","Soccer","International","U19 Euro Championship (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(507,"1174","Soccer","International","U19 Women Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(508,"1494","Soccer","International","U20 World Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(509,"1373","Soccer","International","U23 Internationals Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(510,"1039","Soccer","International","Toulon Tournament");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(511,"521","Soccer","AFC","Champions League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(512,"522","Soccer","AFC","AFC Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(513,"1181","Soccer","AFC","U16 Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(514,"1219","Soccer","AFC","U19 Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(515,"413","Soccer","Albania","Super League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(516,"601","Soccer","Albania","Albanian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(517,"494","Soccer","Algeria","Division One");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(518,"600","Soccer","Algeria","Algerian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(519,"1206","Soccer","Algeria","Division Two");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(520,"1165","Soccer","Andorra","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(521,"1453","Soccer","Andorra","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(522,"498","Soccer","Arabia","Champions League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(523,"87","Soccer","Argentina","Primera Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(524,"511","Soccer","Argentina","Nacional B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(525,"977","Soccer","Argentina","Torneo de Verano");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(526,"414","Soccer","Armenia","Armenian Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(527,"1437","Soccer","Armenia","Armenian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(528,"1490","Soccer","Armenia","Armenian League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(529,"5","Soccer","Australia","A-League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(530,"276","Soccer","Australia","Pre-Season Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(531,"146","Soccer","Australia","Minor Leagues");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(532,"1527","Soccer","Australia","ACT Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(533,"972","Soccer","Australia","NSW Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(534,"1135","Soccer","Australia","QLD State League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(535,"1134","Soccer","Australia","SA Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(536,"1502","Soccer","Australia","Tasmania Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(537,"1132","Soccer","Australia","Victorian Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(538,"1133","Soccer","Australia","WA Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(539,"1411","Soccer","Australia","Brisbane Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(540,"1027","Soccer","Australia","Foxtel Cup U21");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(541,"1099","Soccer","Australia","National Youth League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(542,"1554","Soccer","Australia","Brisbane Canale Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(543,"1171","Soccer","Australia","W-League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(544,"93","Soccer","Austria","Bundesliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(545,"237","Soccer","Austria","Red Zac 1.Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(546,"1480","Soccer","Austria","Regionalliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(547,"417","Soccer","Austria","Regionalliga East");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(548,"418","Soccer","Austria","Regionalliga Middle");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(549,"1469","Soccer","Austria","Regionalliga Promotion");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(550,"419","Soccer","Austria","Regionalliga West");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(551,"154","Soccer","Austria","OFB Stiegl Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(552,"847","Soccer","Austria","Burgenlandliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(553,"856","Soccer","Austria","Carinthian League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(554,"849","Soccer","Austria","Niederosterreich LL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(555,"850","Soccer","Austria","Oberosterreichliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(556,"854","Soccer","Austria","Salzburg LL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(557,"857","Soccer","Austria","Styrian League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(558,"855","Soccer","Austria","Tirolliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(559,"851","Soccer","Austria","Vorarlbergliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(560,"848","Soccer","Austria","Wienerliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(561,"1032","Soccer","Austria","Bundesliga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(562,"1053","Soccer","Austria","VFV Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(563,"538","Soccer","Azerbaijan","Supreme League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(564,"1249","Soccer","Azerbaijan","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(565,"495","Soccer","Bahrain","Bahrain League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(566,"599","Soccer","Bahrain","Bahrain Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(567,"1374","Soccer","Bahrain","Bahrain Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(568,"442","Soccer","Belarus","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(569,"1014","Soccer","Belarus","Belarus Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(570,"1384","Soccer","Belarus","Belarus Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(571,"1491","Soccer","Belarus","Premier League (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(572,"98","Soccer","Belgium","Jupiler League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(573,"156","Soccer","Belgium","2e Klasse");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(574,"509","Soccer","Belgium","3e Klasse Group A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(575,"510","Soccer","Belgium","3e Klasse Group B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(576,"155","Soccer","Belgium","Beker van Belgie");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(577,"157","Soccer","Belgium","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(578,"945","Soccer","Belgium","1e Nationale (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(579,"410","Soccer","Bolivia","Primera Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(580,"469","Soccer","Bosnia-Herzegovina","Premier Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(581,"1440","Soccer","Bosnia-Herzegovina","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(582,"88","Soccer","Brazil","Serie A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(583,"239","Soccer","Brazil","Serie B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(584,"804","Soccer","Brazil","Serie C");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(585,"167","Soccer","Brazil","Copa do Brazil");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(586,"238","Soccer","Brazil","Campeonata Paulista");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(587,"240","Soccer","Brazil","Campeonato Carioca");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(588,"1003","Soccer","Brazil","Catarinense");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(589,"1473","Soccer","Brazil","Copa Nordeste");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(590,"514","Soccer","Brazil","Gaucho Group 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(591,"515","Soccer","Brazil","Gaucho Group 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(592,"516","Soccer","Brazil","Mineiro");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(593,"1486","Soccer","Brazil","Paulista Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(594,"983","Soccer","Brazil","Copa Sao Paulo");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(595,"1281","Soccer","Brazil","U20");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(596,"162","Soccer","Bulgaria","Grupa A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(597,"524","Soccer","Bulgaria","Bulgarian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(598,"1184","Soccer","Bulgaria","B PFG East");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(599,"1185","Soccer","Bulgaria","B PFG West");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(600,"639","Soccer","Bulgaria","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(601,"150","Soccer","CAF","Champions League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(602,"1267","Soccer","CECAFA","Champions League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(603,"738","Soccer","CONCACAF","CONCACAF Champions League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(604,"91","Soccer","CONCACAF","Gold Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(605,"633","Soccer","CONCACAF","North American Super Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(606,"1122","Soccer","CONCACAF","CONCACAF U20s Championship");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(607,"168","Soccer","CONMEBOL","Copa Libertadores");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(608,"623","Soccer","CONMEBOL","Copa Panamerica");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(609,"169","Soccer","CONMEBOL","Copa Sudamericana");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(610,"551","Soccer","CONMEBOL","Recopa Sudamericana");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(611,"593","Soccer","Cameroon","1st Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(612,"554","Soccer","Canada","Canadian League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(613,"105","Soccer","Chile","Primera League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(614,"1095","Soccer","Chile","Chile Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(615,"1183","Soccer","Chile","Primera B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(616,"163","Soccer","China","Super League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(617,"602","Soccer","China","Division One");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(618,"1274","Soccer","China","Super League (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(619,"404","Soccer","Colombia","Primera Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(620,"1020","Soccer","Colombia","Copa Colombia");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(621,"1207","Soccer","Colombia","Primera B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(622,"502","Soccer","Costa Rica","Primera Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(623,"97","Soccer","Croatia","1.HNL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(624,"409","Soccer","Croatia","2.HNL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(625,"463","Soccer","Croatia","Croatian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(626,"1200","Soccer","Croatia","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(627,"376","Soccer","Cyprus","Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(628,"489","Soccer","Cyprus","Cypriot Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(629,"1525","Soccer","Cyprus","Cypriot Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(630,"1246","Soccer","Cyprus","Division 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(631,"1378","Soccer","Cyprus","Cup (Women)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(632,"96","Soccer","Czech Republic","Gambrinus Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(633,"412","Soccer","Czech Republic","Druha Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(634,"868","Soccer","Czech Republic","1. Liga Zeny");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(635,"517","Soccer","Czech Republic","Ligy 3 CFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(636,"518","Soccer","Czech Republic","Ligy 3 MSFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(637,"170","Soccer","Czech Republic","Pohar CMFS");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(638,"961","Soccer","Czech Republic","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(639,"1492","Soccer","Czech Republic","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(640,"79","Soccer","Denmark","Superligaen");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(641,"370","Soccer","Denmark","1st Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(642,"259","Soccer","Denmark","2nd Division East");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(643,"1475","Soccer","Denmark","2nd Division Playoffs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(644,"260","Soccer","Denmark","2nd Division West");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(645,"171","Soccer","Denmark","Danish Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(646,"540","Soccer","Denmark","Danmarksseriaen p1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(647,"541","Soccer","Denmark","Danmarksseriaen p2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(648,"1092","Soccer","Denmark","Danmarksseriaen p3");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(649,"180","Soccer","Denmark","Fynsserien");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(650,"184","Soccer","Denmark","Kval.Raekken P 3");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(651,"182","Soccer","Denmark","Kval.Raekken P1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(652,"183","Soccer","Denmark","Kval.Raekken P2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(653,"181","Soccer","Denmark","Jyllandsserien P1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(654,"587","Soccer","Denmark","Jyllandsserien P2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(655,"1539","Soccer","Denmark","Jyllandsserien P3");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(656,"1540","Soccer","Denmark","Jyllandsserien P4");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(657,"176","Soccer","Denmark","Kvinde 3F Ligaen (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(658,"174","Soccer","Denmark","Kvinde Division 1 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(659,"175","Soccer","Denmark","Danish Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(660,"408","Soccer","Ecuador","Serie A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(661,"1208","Soccer","Ecuador","Primera B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(662,"485","Soccer","Egypt","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(663,"603","Soccer","Egypt","Egyptian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(664,"1178","Soccer","El Salvador","La Primera");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(665,"1","Soccer","England","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(666,"2","Soccer","England","Championship");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(667,"62","Soccer","England","League One");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(668,"63","Soccer","England","League Two");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(669,"99","Soccer","England","Blue Square Premier");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(670,"165","Soccer","England","Conference North");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(671,"166","Soccer","England","Conference South");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(672,"12","Soccer","England","FA Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(673,"197","Soccer","England","Premier League Reserves");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(674,"100","Soccer","England","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(675,"241","Soccer","England","Community Shield");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(676,"314","Soccer","England","Isthmian Premier");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(677,"320","Soccer","England","Southern Premier");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(678,"356","Soccer","England","Unibond Premier");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(679,"164","Soccer","England","Conference League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(680,"198","Soccer","England","FA Trophy");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(681,"199","Soccer","England","FA Vase");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(682,"243","Soccer","England","Football League Trophy");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(683,"310","Soccer","England","Ryman Div 1 North");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(684,"311","Soccer","England","Ryman Div 1 South");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(685,"499","Soccer","England","Southern Div 1 Midlands");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(686,"500","Soccer","England","Southern Div 1 SW");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(687,"651","Soccer","England","Unibond Div 1 North");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(688,"652","Soccer","England","Unibond Div 1 South");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(689,"201","Soccer","England","FA Womens Premier (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(690,"361","Soccer","England","Premier League Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(691,"363","Soccer","England","Community Shield (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(692,"200","Soccer","England","FA Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(693,"202","Soccer","England","FA Youth Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(694,"375","Soccer","Estonia","Meistriliiga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(695,"1436","Soccer","Estonia","Esiliiga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(696,"1173","Soccer","Estonia","Estonian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(697,"1495","Soccer","Estonia","Meistriliiga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(698,"1365","Soccer","Estonia","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(699,"406","Soccer","Faroe Islands","Formula Deildin");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(700,"596","Soccer","Faroe Islands","Faroe Islands Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(701,"80","Soccer","Finland","Veikkausliiga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(702,"138","Soccer","Finland","Ykkonen");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(703,"205","Soccer","Finland","Kakkonen Group A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(704,"206","Soccer","Finland","Kakkonen Group B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(705,"207","Soccer","Finland","Kakkonen Group C");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(706,"204","Soccer","Finland","Suomen Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(707,"992","Soccer","Finland","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(708,"909","Soccer","Finland","Veikkausliiga Playoff");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(709,"866","Soccer","Finland","Naisten Liiga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(710,"1370","Soccer","Finland","League Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(711,"914","Soccer","Finland","Suomen Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(712,"29","Soccer","France","Ligue 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(713,"208","Soccer","France","Ligue 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(714,"400","Soccer","France","National League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(715,"209","Soccer","France","Coupe de France");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(716,"210","Soccer","France","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(717,"211","Soccer","France","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(718,"526","Soccer","France","CFA Group A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(719,"527","Soccer","France","CFA Group B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(720,"528","Soccer","France","CFA Group C");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(721,"529","Soccer","France","CFA Group D");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(722,"530","Soccer","France","Feminine Division 1 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(723,"537","Soccer","Georgia","Umaglesi Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(724,"1217","Soccer","Georgia","Georgia Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(725,"1288","Soccer","Georgia","Georgia Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(726,"18","Soccer","Germany","Bundesliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(727,"95","Soccer","Germany","Bundesliga II");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(728,"1075","Soccer","Germany","3. Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(729,"214","Soccer","Germany","Regionalliga North");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(730,"215","Soccer","Germany","Regionalliga South");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(731,"1074","Soccer","Germany","Regionalliga West");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(732,"212","Soccer","Germany","DFB Pokal");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(733,"1058","Soccer","Germany","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(734,"213","Soccer","Germany","Premiere-Ligapokal");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(735,"978","Soccer","Germany","SWD Wintercup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(736,"217","Soccer","Germany","Oberliga Bade-Wurttemberg");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(737,"218","Soccer","Germany","Oberliga Bayern");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(738,"1090","Soccer","Germany","Oberliga Bremen");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(739,"1089","Soccer","Germany","Oberliga Hamburg");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(740,"219","Soccer","Germany","Oberliga Hessen");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(741,"1091","Soccer","Germany","Oberliga Nied West");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(742,"225","Soccer","Germany","Oberliga Niedersachsen Ost");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(743,"1478","Soccer","Germany","Oberliga Nordost-Nord");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(744,"1479","Soccer","Germany","Oberliga Nordost-Sud");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(745,"223","Soccer","Germany","Oberliga Nordrhein");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(746,"224","Soccer","Germany","Oberliga Sudwest");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(747,"222","Soccer","Germany","Schleswig Holstein");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(748,"873","Soccer","Germany","Junior Bundesliga Nth/Nth East");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(749,"907","Soccer","Germany","Junior Bundesliga Sth/Sth West");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(750,"872","Soccer","Germany","Junior Bundesliga West");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(751,"641","Soccer","Germany","Bundesliga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(752,"1252","Soccer","Germany","2 Bundesliga Nord Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(753,"1253","Soccer","Germany","2 Bundesliga Sud Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(754,"1017","Soccer","Germany","DFB Pokal (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(755,"64","Soccer","Greece","Super League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(756,"398","Soccer","Greece","B Ethniki");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(757,"188","Soccer","Greece","C Ethniki North");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(758,"912","Soccer","Greece","C Ethniki South");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(759,"226","Soccer","Greece","Greek Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(760,"742","Soccer","Greece","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(761,"405","Soccer","Guatemala","Liga Nacional");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(762,"1121","Soccer","Honduras","Liga Nacional");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(763,"523","Soccer","Hong Kong","1st Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(764,"228","Soccer","Hungary","NBI");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(765,"534","Soccer","Hungary","NB2 K-East");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(766,"535","Soccer","Hungary","NB2 West-N");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(767,"595","Soccer","Hungary","Hungarian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(768,"1321","Soccer","Hungary","NB1 Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(769,"794","Soccer","Hungary","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(770,"594","Soccer","Hungary","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(771,"229","Soccer","Iceland","Landesbankadeildin");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(772,"557","Soccer","Iceland","Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(773,"597","Soccer","Iceland","Icelandic Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(774,"1462","Soccer","Iceland","Urvalsdeild (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(775,"1348","Soccer","Iceland","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(776,"1349","Soccer","Iceland","Womens Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(777,"974","Soccer","India","I League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(778,"1306","Soccer","India","Federation Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(779,"1065","Soccer","Indonesia","Super Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(780,"1019","Soccer","Iran","Iran Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(781,"486","Soccer","Iran","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(782,"1323","Soccer","Iran","Azadegan League B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(783,"1324","Soccer","Iran","Azadegan League Group A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(784,"604","Soccer","Iraq","Iraqi League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(785,"103","Soccer","Ireland","Premier Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(786,"316","Soccer","Ireland","Setanta Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(787,"230","Soccer","Ireland","1st Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(788,"369","Soccer","Ireland","FAI Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(789,"232","Soccer","Ireland","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(790,"930","Soccer","Ireland","Premier Division Playoff");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(791,"233","Soccer","Israel","Ligat Al");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(792,"477","Soccer","Israel","Liga Leumit");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(793,"975","Soccer","Israel","Liga Artzit");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(794,"1334","Soccer","Israel","Ligat Al Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(795,"605","Soccer","Israel","Israeli Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(796,"1526","Soccer","Israel","Toto Cup Ligat Al");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(797,"1528","Soccer","Israel","Toto Cup Ligat Al");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(798,"6","Soccer","Italy","Serie A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(799,"7","Soccer","Italy","Serie B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(800,"262","Soccer","Italy","Lega Pro Prima A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(801,"373","Soccer","Italy","Lega Pro Prima B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(802,"1117","Soccer","Italy","Lega Pro Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(803,"1043","Soccer","Italy","Serie C Playoffs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(804,"264","Soccer","Italy","Serie C2/A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(805,"265","Soccer","Italy","Serie C2/B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(806,"266","Soccer","Italy","Serie C2/C");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(807,"85","Soccer","Italy","Coppa Italia");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(808,"235","Soccer","Italy","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(809,"242","Soccer","Japan","J-League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(810,"391","Soccer","Japan","J2-League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(811,"1140","Soccer","Japan","J-3 League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(812,"883","Soccer","Japan","Satellite League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(813,"236","Soccer","Japan","Japanese Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(814,"1377","Soccer","Japan","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(815,"903","Soccer","Japan","Emperors Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(816,"920","Soccer","Japan","Youth Sahara Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(817,"988","Soccer","Japan","Japense Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(818,"1175","Soccer","Japan","L-League Div 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(819,"1515","Soccer","Japan","Japense League Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(820,"1176","Soccer","Japan","L-League Div 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(821,"497","Soccer","Jordan","Jordan League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(822,"629","Soccer","Jordan","Shield Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(823,"1543","Soccer","Jordan","Jordan Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(824,"628","Soccer","Kazakhstan","Super League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(825,"932","Soccer","Kazakhstan","Kazakhstan Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(826,"1385","Soccer","Kazakhstan","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(827,"1166","Soccer","Korea","Women K League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(828,"492","Soccer","Kuwait","Kuwaiti League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(829,"927","Soccer","Kuwait","Crown Prince Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(830,"981","Soccer","Kuwait","Federation Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(831,"1327","Soccer","Kuwait","Kuwaiti Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(832,"1544","Soccer","Kuwait","Kuwait Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(833,"393","Soccer","Latvia","Virsliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(834,"1498","Soccer","Latvia","1. Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(835,"1512","Soccer","Latvia","Championship (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(836,"1450","Soccer","Latvia","Latvian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(837,"496","Soccer","Lebanon","Lebanese League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(838,"487","Soccer","Libya","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(839,"598","Soccer","Libya","Libyan Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(840,"394","Soccer","Lithuania","A Lyga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(841,"1460","Soccer","Lithuania","1 Lyga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(842,"1218","Soccer","Lithuania","Lietuvos taurë");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(843,"539","Soccer","Luxembourg","Division Nationale");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(844,"1463","Soccer","Luxembourg","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(845,"416","Soccer","Macedonian","1st League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(846,"1259","Soccer","Macedonian","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(847,"491","Soccer","Malaysia","Super League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(848,"648","Soccer","Malaysia","Malaysian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(849,"1503","Soccer","Malaysia","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(850,"488","Soccer","Malta","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(851,"1024","Soccer","Malta","FA Trophy");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(852,"131","Soccer","Mexico","Clausura");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(853,"512","Soccer","Mexico","Primera A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(854,"484","Soccer","Mexico","Interliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(855,"513","Soccer","Moldova","National Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(856,"1212","Soccer","Moldova","1st Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(857,"1376","Soccer","Moldova","National Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(858,"402","Soccer","Montenegro","Prva Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(859,"1258","Soccer","Montenegro","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(860,"553","Soccer","Morocco","GNEF 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(861,"1245","Soccer","Morocco","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(862,"16","Soccer","Netherlands","Eredivisie");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(863,"227","Soccer","Netherlands","Jupiler League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(864,"185","Soccer","Netherlands","Dutch Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(865,"1550","Soccer","Netherlands","Topklasse Saturday");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(866,"1551","Soccer","Netherlands","Topklasse Sunday");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(867,"186","Soccer","Netherlands","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(868,"813","Soccer","Netherlands","Hoofdklasse Saturday B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(869,"814","Soccer","Netherlands","Hoofdklasse Saturday C");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(870,"1139","Soccer","Netherlands","Nacompetitie");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(871,"1115","Soccer","Netherlands","Youth Eerste Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(872,"816","Soccer","Netherlands","Hoofdklasse Sunday B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(873,"817","Soccer","Netherlands","Hoofdklasse Sunday C");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(874,"1177","Soccer","Netherlands","Eredivisie Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(875,"1094","Soccer","Netherlands","Youth Eredivisie");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(876,"943","Soccer","New Zealand","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(877,"1158","Soccer","Nicaragua","Primera");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(878,"1248","Soccer","Nigeria","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(879,"247","Soccer","Northern Ireland","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(880,"246","Soccer","Northern Ireland","Northern Ireland Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(881,"786","Soccer","Northern Ireland","CIS League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(882,"1260","Soccer","Northern Ireland","County Antrim Shield");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(883,"84","Soccer","Norway","Tippeligaen");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(884,"291","Soccer","Norway","Adeccoligaen");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(885,"294","Soccer","Norway","Division 2 Group 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(886,"295","Soccer","Norway","Division 2 Group 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(887,"296","Soccer","Norway","Division 2 Group 3");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(888,"297","Soccer","Norway","Division 2 Group 4");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(889,"271","Soccer","Norway","Division 3  Sogn og Fjordane");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(890,"252","Soccer","Norway","Division 3 Agder");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(891,"285","Soccer","Norway","Division 3 Akershus");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(892,"288","Soccer","Norway","Division 3 Buskerud");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(893,"282","Soccer","Norway","Division 3 Finnmark");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(894,"279","Soccer","Norway","Division 3 Halogaland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(895,"269","Soccer","Norway","Division 3 Hordaland 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(896,"270","Soccer","Norway","Division 3 Hordaland 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(897,"286","Soccer","Norway","Division 3 Indre Ostland 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(898,"287","Soccer","Norway","Division 3 Indre Ostland 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(899,"278","Soccer","Norway","Division 3 Nordland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(900,"273","Soccer","Norway","Division 3 Nordmore og Rom");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(901,"250","Soccer","Norway","Division 3 Oslo 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(902,"275","Soccer","Norway","Division 3 Oslo 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(903,"283","Soccer","Norway","Division 3 Oslo 3");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(904,"284","Soccer","Norway","Division 3 Ostfold");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(905,"253","Soccer","Norway","Division 3 Rogaland 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(906,"268","Soccer","Norway","Division 3 Rogaland 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(907,"272","Soccer","Norway","Division 3 Sunnmore");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(908,"251","Soccer","Norway","Division 3 Telemark");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(909,"281","Soccer","Norway","Division 3 Troms");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(910,"274","Soccer","Norway","Division 3 Trondelag 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(911,"277","Soccer","Norway","Division 3 Trondelag 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(912,"289","Soccer","Norway","Division 3 Vestfold");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(913,"871","Soccer","Norway","3rd Division Playoffs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(914,"1105","Soccer","Norway","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(915,"910","Soccer","Norway","Tippeligaen Playoff");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(916,"292","Soccer","Norway","Norwegian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(917,"290","Soccer","Norway","Toppserien Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(918,"743","Soccer","Norway","Division 1 Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(919,"248","Soccer","Norway","Norwegian Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(920,"1220","Soccer","OFC","OFC Champions League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(921,"834","Soccer","Olympic Games","Qualifiers");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(922,"490","Soccer","Oman","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(923,"908","Soccer","Oman","Sultans Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(924,"392","Soccer","Paraguay","Professional Div");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(925,"300","Soccer","Peru","Primera Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(926,"303","Soccer","Poland","Ekstraklasa");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(927,"415","Soccer","Poland","I Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(928,"795","Soccer","Poland","3rd Liga Group 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(929,"796","Soccer","Poland","3rd Liga Group 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(930,"797","Soccer","Poland","3rd Liga Group 3");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(931,"798","Soccer","Poland","3rd Liga Group 4");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(932,"1448","Soccer","Poland","Ekstraliga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(933,"1204","Soccer","Poland","II Liga East");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(934,"1205","Soccer","Poland","II Liga West");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(935,"302","Soccer","Poland","Polish Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(936,"630","Soccer","Poland","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(937,"101","Soccer","Portugal","Liga Win");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(938,"304","Soccer","Portugal","Liga Vitalis");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(939,"800","Soccer","Portugal","II Div Serie A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(940,"801","Soccer","Portugal","II Div Serie B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(941,"802","Soccer","Portugal","II Div Serie C");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(942,"803","Soccer","Portugal","II Div Serie D");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(943,"1474","Soccer","Portugal","II Divisao Playoffs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(944,"592","Soccer","Portugal","Portuguese Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(945,"937","Soccer","Portugal","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(946,"306","Soccer","Portugal","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(947,"493","Soccer","Qatar","League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(948,"1026","Soccer","Qatar","Crown Prince Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(949,"307","Soccer","Romania","Liga I");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(950,"792","Soccer","Romania","Liga II Serie 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(951,"793","Soccer","Romania","Liga II Serie 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(952,"897","Soccer","Romania","Liga III Group 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(953,"899","Soccer","Romania","Liga III Group 4");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(954,"308","Soccer","Romania","Romanian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(955,"615","Soccer","Romania","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(956,"309","Soccer","Russia","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(957,"636","Soccer","Russia","Reserves League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(958,"520","Soccer","Russia","1st Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(959,"558","Soccer","Russia","2nd Division Center");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(960,"559","Soccer","Russia","2nd Division East");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(961,"560","Soccer","Russia","2nd Division South");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(962,"561","Soccer","Russia","2nd Division Ural Povolzhye");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(963,"562","Soccer","Russia","2nd Division West");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(964,"1464","Soccer","Russia","Premier League (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(965,"1564","Soccer","Russia","Cup Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(966,"399","Soccer","Russia","Russian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(967,"1104","Soccer","Russia","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(968,"459","Soccer","San Marino","Marino Campionato");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(969,"481","Soccer","Saudi Arabia","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(970,"606","Soccer","Saudi Arabia","Saudi Arabia Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(971,"1102","Soccer","Saudi Arabia","Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(972,"1375","Soccer","Saudi Arabia","Saudi Arabia Div 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(973,"8","Soccer","Scotland","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(974,"94","Soccer","Scotland","1st Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(975,"158","Soccer","Scotland","2nd Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(976,"159","Soccer","Scotland","3rd Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(977,"473","Soccer","Scotland","FA Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(978,"254","Soccer","Scotland","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(979,"315","Soccer","Scotland","League Challenge Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(980,"644","Soccer","Scotland","Highland League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(981,"401","Soccer","Serbia","Super Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(982,"607","Soccer","Serbia","Serbian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(983,"390","Soccer","Singapore","S-League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(984,"632","Soccer","Singapore","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(985,"1367","Soccer","Singapore","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(986,"317","Soccer","Slovakia","Super Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(987,"420","Soccer","Slovakia","1.Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(988,"464","Soccer","Slovakia","Slovakian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(989,"608","Soccer","Slovakia","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(990,"374","Soccer","Slovenia","Prva Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(991,"609","Soccer","Slovenia","Slovenian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(992,"1067","Soccer","Slovenia","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(993,"444","Soccer","South Africa","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(994,"1247","Soccer","South Africa","1st Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(995,"734","Soccer","South Africa","South African Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(996,"421","Soccer","South Korea","K League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(997,"556","Soccer","South Korea","Korean Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(998,"1063","Soccer","South Korea","National Championship");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(999,"1025","Soccer","South Korea","K3 League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1000,"1508","Soccer","South Korea","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1001,"17","Soccer","Spain","Primera Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1002,"104","Soccer","Spain","Liga Adelante");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1003,"321","Soccer","Spain","Segunda B Group 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1004,"322","Soccer","Spain","Segunda B Group 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1005,"323","Soccer","Spain","Segunda B Group 3");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1006,"324","Soccer","Spain","Segunda B Group 4");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1007,"1041","Soccer","Spain","Segunda B Playoffs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1008,"86","Soccer","Spain","Copa Del Rey");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1009,"610","Soccer","Spain","Copa de Catalunya");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1010,"325","Soccer","Spain","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1011,"683","Soccer","Spain","Tercera Division Group 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1012,"692","Soccer","Spain","Tercera Division Group 10");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1013,"698","Soccer","Spain","Tercera Division Group 11");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1014,"693","Soccer","Spain","Tercera Division Group 12");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1015,"694","Soccer","Spain","Tercera Division Group 13");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1016,"695","Soccer","Spain","Tercera Division Group 14");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1017,"696","Soccer","Spain","Tercera Division Group 15");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1018,"697","Soccer","Spain","Tercera Division Group 16");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1019,"699","Soccer","Spain","Tercera Division Group 17");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1020,"700","Soccer","Spain","Tercera Division Group 18");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1021,"684","Soccer","Spain","Tercera Division Group 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1022,"685","Soccer","Spain","Tercera Division Group 3");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1023,"686","Soccer","Spain","Tercera Division Group 4");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1024,"687","Soccer","Spain","Tercera Division Group 5");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1025,"688","Soccer","Spain","Tercera Division Group 6");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1026,"689","Soccer","Spain","Tercera Division Group 7");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1027,"690","Soccer","Spain","Tercera Division Group 8");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1028,"691","Soccer","Spain","Tercera Division Group 9");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1029,"1040","Soccer","Spain","Tercera Playoffs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1030,"531","Soccer","Spain","Femenino Superliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1031,"946","Soccer","Sudan","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1032,"56","Soccer","Sweden","Allsvenskan");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1033,"137","Soccer","Sweden","Superettan");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1034,"327","Soccer","Sweden","Division 1 Norra");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1035,"328","Soccer","Sweden","Division 1 Sodra");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1036,"1137","Soccer","Sweden","Division 2 Mellersta Gotalan");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1037,"330","Soccer","Sweden","Division 2 Norra Svealand");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1038,"331","Soccer","Sweden","Division 2 Norrland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1039,"329","Soccer","Sweden","Division 2 Ostra Gotaland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1040,"333","Soccer","Sweden","Division 2 Sodra Goteland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1041,"332","Soccer","Sweden","Division 2 Sodra Svealand");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1042,"334","Soccer","Sweden","Division 2 Vastra Gotaland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1043,"572","Soccer","Sweden","Division 3 Mellersta Gotaland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1044,"565","Soccer","Sweden","Division 3 Mellersta Norrland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1045,"570","Soccer","Sweden","Division 3 Nordostra Gotaland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1046,"571","Soccer","Sweden","Division 3 Nordvastra Gotaland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1047,"564","Soccer","Sweden","Division 3 Norra Norrland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1048,"567","Soccer","Sweden","Division 3 Norra Svealand");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1049,"568","Soccer","Sweden","Division 3 Ostra Svealand");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1050,"575","Soccer","Sweden","Division 3 Sodra Gotaland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1051,"566","Soccer","Sweden","Division 3 Sodra Norrland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1052,"573","Soccer","Sweden","Division 3 Sydostra Gotaland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1053,"574","Soccer","Sweden","Division 3 Sydvastra Gotaland");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1054,"569","Soccer","Sweden","Division 3 Vastra Svealand");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1055,"1015","Soccer","Sweden","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1056,"335","Soccer","Sweden","Swedish Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1057,"336","Soccer","Sweden","Damallsvenskan (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1058,"1449","Soccer","Sweden","Norettan (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1059,"1468","Soccer","Sweden","Soderettan (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1060,"590","Soccer","Sweden","Womens Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1061,"1016","Soccer","Sweden","Super Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1062,"92","Soccer","Switzerland","Super League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1063,"339","Soccer","Switzerland","Challenge League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1064,"1561","Soccer","Switzerland","1.Liga Group 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1065,"337","Soccer","Switzerland","Swiss Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1066,"1194","Soccer","Switzerland","Womens Nationalliga A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1067,"1038","Soccer","Switzerland","Playoffs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1068,"1452","Soccer","Switzerland","Womens Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1069,"612","Soccer","Syria","1st Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1070,"613","Soccer","Syria","Syrian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1071,"1141","Soccer","Thailand","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1072,"1186","Soccer","Thailand","FA Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1073,"525","Soccer","Tunisia","League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1074,"1304","Soccer","Tunisia","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1075,"1305","Soccer","Tunisia","League 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1076,"102","Soccer","Turkey","Superlig");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1077,"411","Soccer","Turkey","Lig A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1078,"1538","Soccer","Turkey","2. Lig Beyaz");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1079,"1541","Soccer","Turkey","2. Lig Kirmizi");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1080,"788","Soccer","Turkey","Lig B Group 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1081,"789","Soccer","Turkey","Lig B Group 3");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1082,"790","Soccer","Turkey","Lig B Group 4");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1083,"791","Soccer","Turkey","Lig B Group 5");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1084,"340","Soccer","Turkey","Turkish Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1085,"631","Soccer","Turkey","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1086,"622","Soccer","Turkey","Urgup Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1087,"634","Soccer","Turkey","Kartepe Tournament");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1088,"504","Soccer","UAE","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1089,"997","Soccer","UAE","Division One");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1090,"996","Soccer","UAE","UAE Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1091,"1250","Soccer","UAE","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1092,"20","Soccer","UEFA","Champions League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1093,"50","Soccer","UEFA","Europa League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1094,"348","Soccer","UEFA","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1095,"106","Soccer","UEFA","Intertoto Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1096,"799","Soccer","UEFA","UEFA Champions League (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1097,"14","Soccer","USA","Major League Soccer");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1098,"555","Soccer","USA","USL 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1099,"762","Soccer","USA","Mens Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1100,"1443","Soccer","USA","USL 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1101,"1142","Soccer","USA","Womens Pro Soccer");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1102,"349","Soccer","Ukraine","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1103,"627","Soccer","Ukraine","1st Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1104,"640","Soccer","Ukraine","Vyscha Reserves");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1105,"642","Soccer","Ukraine","Druha Liga A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1106,"643","Soccer","Ukraine","Druha Liga B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1107,"614","Soccer","Ukraine","Ukrainian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1108,"1073","Soccer","Ukraine","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1109,"350","Soccer","Uruguay","Apertura");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1110,"1002","Soccer","Uruguay","Ricard Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1111,"1170","Soccer","Uzbekistan","PFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1112,"1470","Soccer","Uzbekistan","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1113,"403","Soccer","Venezuela","Primera Division");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1114,"533","Soccer","Vietnam","V-league");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1115,"1310","Soccer","Vietnam","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1116,"244","Soccer","Wales","Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1117,"359","Soccer","Wales","Welsh Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1118,"1199","Soccer","Wales","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1119,"1144","Soccer","World Club","Audi Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1120,"261","Soccer","World Club","Club Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1121,"973","Soccer","World Club","Dubai Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1122,"635","Soccer","World Club","Emirates Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1123,"117","Soccer","World Club","FIFA Club World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1124,"624","Soccer","World Club","Junior Elite League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1125,"245","Soccer","World Club","Maspalomas Tournament");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1126,"902","Soccer","World Club","Mythical Matches");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1127,"298","Soccer","World Club","Peace Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1128,"116","Soccer","World Club","Royal League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1129,"1004","Soccer","World Club","Viareggio Tournament");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1130,"1145","Soccer","World Club","World Football Challenge");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1131,"984","Soccer","World Club","Dubai Football Challenge");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1132,"1333","Soccer","World Club","CIS Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1133,"998","Soccer","World Club","Channel One Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1134,"1062","Soccer","World Club","Uhren Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1135,"152","Soccer","World Club","Amsterdam Tournament");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1136,"1080","Soccer","World Club","Feyenoord Jubilee");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1137,"1079","Soccer","World Club","Mallorca Summer Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1138,"1081","Soccer","World Club","Russian Railways Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1139,"1078","Soccer","World Club","Vodacom Challenge");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1140,"591","Soccer","World Club","Baltic League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1141,"552","Soccer","Yemen","Yemen League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1142,"928","Soccer","Yemen","Presidents Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1143,"1351","Soccer","Yemen","Yemen 2 League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1144,"1301","Ice Hockey","International","Winter Olympics");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1145,"917","Ice Hockey","International","World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1146,"1224","Ice Hockey","International","World Championships (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1147,"78","Ice Hockey","International","World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1148,"1280","Ice Hockey","International","Channel One Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1149,"1290","Ice Hockey","International","Euro Hockey Tour");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1150,"1531","Ice Hockey","International","Eurotrophy");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1151,"976","Ice Hockey","International","U20 World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1152,"1313","Ice Hockey","International","Winter Olympics (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1153,"1524","Ice Hockey","International","Club Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1154,"916","Ice Hockey","International","International Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1155,"1535","Ice Hockey","International","International U20 Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1156,"764","Ice Hockey","Asia","Asian Hockey League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1157,"107","Ice Hockey","Austria","EHL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1158,"436","Ice Hockey","Austria","NL League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1159,"1188","Ice Hockey","Austria","Oberliga Hockey");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1160,"465","Ice Hockey","Belarus","Belarus League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1161,"508","Ice Hockey","Belgium","Championship");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1162,"767","Ice Hockey","Belgium","Belgian Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1163,"437","Ice Hockey","Canada","OHL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1164,"842","Ice Hockey","Canada","QMJHL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1165,"108","Ice Hockey","Czech Republic","Extraliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1166,"754","Ice Hockey","Czech Republic","1.Liga Vychod");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1167,"714","Ice Hockey","Czech Republic","1.Liga Zapad");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1168,"1530","Ice Hockey","Czech Republic","Czech Ice Hockey Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1169,"109","Ice Hockey","Denmark","Danish Ligaen");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1170,"1098","Ice Hockey","Europe","Champions Hockey League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1171,"918","Ice Hockey","Europe","Euro Challenge");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1172,"926","Ice Hockey","Europe","Karjala Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1173,"809","Ice Hockey","Europe","Continental Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1174,"72","Ice Hockey","Finland","SM-Liiga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1175,"377","Ice Hockey","Finland","Mestis");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1176,"860","Ice Hockey","Finland","SS Alkulohko 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1177,"861","Ice Hockey","Finland","SS Alkulohko 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1178,"862","Ice Hockey","Finland","SS Alkulohko 3");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1179,"863","Ice Hockey","Finland","SS Alkulohko 4");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1180,"864","Ice Hockey","Finland","SS Alkulohko 5");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1181,"744","Ice Hockey","Finland","SM-Liiga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1182,"867","Ice Hockey","Finland","U20 SM-Sarja");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1183,"471","Ice Hockey","France","Ligue Magnus");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1184,"752","Ice Hockey","France","Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1185,"114","Ice Hockey","Germany","Deutsche Eishockey Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1186,"378","Ice Hockey","Germany","2. Eishockey Bundesliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1187,"438","Ice Hockey","Germany","Oberliga Hockey");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1188,"1296","Ice Hockey","Germany","Bayernliga Hockey");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1189,"654","Ice Hockey","Germany","German Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1190,"1197","Ice Hockey","Hungary","MOL Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1191,"439","Ice Hockey","Italy","Serie A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1192,"440","Ice Hockey","Italy","Serie A2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1193,"466","Ice Hockey","Latvia","Premjerliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1194,"506","Ice Hockey","Netherlands","Eredvisie");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1195,"110","Ice Hockey","Norway","UPC Ligaen");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1196,"740","Ice Hockey","Norway","Division One");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1197,"1226","Ice Hockey","Norway","Ice Hockey Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1198,"478","Ice Hockey","Poland","Extraliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1199,"1315","Ice Hockey","Poland","Hockey Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1200,"1428","Ice Hockey","Russia","Bandy Vyschia League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1201,"111","Ice Hockey","Russia","KHL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1202,"770","Ice Hockey","Russia","Vyschia Liga East");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1203,"769","Ice Hockey","Russia","Vyschia Liga West");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1204,"1169","Ice Hockey","Russia","Vyschia Liga Centre");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1205,"112","Ice Hockey","Slovakia","Extraliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1206,"673","Ice Hockey","Slovakia","1.Liga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1207,"479","Ice Hockey","Slovenia","Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1208,"73","Ice Hockey","Sweden","Elitserien");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1209,"704","Ice Hockey","Sweden","Allsvenskan");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1210,"1435","Ice Hockey","Sweden","Kvalserien");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1211,"835","Ice Hockey","Sweden","Division 1A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1212,"836","Ice Hockey","Sweden","Division 1B");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1213,"837","Ice Hockey","Sweden","Division 1C");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1214,"838","Ice Hockey","Sweden","Division 1D");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1215,"828","Ice Hockey","Sweden","Division 1E");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1216,"829","Ice Hockey","Sweden","Division 1F");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1217,"1330","Ice Hockey","Sweden","Alletta Mellan");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1218,"1328","Ice Hockey","Sweden","Allettan Norra");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1219,"1329","Ice Hockey","Sweden","Allettan Sodra");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1220,"113","Ice Hockey","Switzerland","NLA");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1221,"462","Ice Hockey","Switzerland","NLB");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1222,"38","Ice Hockey","USA","NHL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1223,"765","Ice Hockey","USA","American Hockey League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1224,"1035","Ice Hockey","USA","NCAA");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1225,"870","Ice Hockey","USA","Central League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1226,"869","Ice Hockey","USA","East Coast Hockey League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1227,"670","Ice Hockey","USA","North American AHL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1228,"840","Ice Hockey","USA","United States Hockey League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1229,"839","Ice Hockey","USA","Western League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1230,"441","Ice Hockey","United Kingdom","Elite Hockey");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1231,"1097","Ice Hockey","World Club","Spengler Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1232,"1413","Ice Hockey","international","Hockey World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1233,"1227","Floorball","International","International Floorball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1234,"1228","Floorball","International","International Floorball Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1235,"1229","Floorball","International","Eurocup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1236,"727","Floorball","Czech Republic","Extraliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1237,"426","Floorball","Denmark","Elite East");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1238,"425","Floorball","Denmark","Elite West");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1239,"1196","Floorball","Denmark","Floorball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1240,"1314","Floorball","Denmark","Floorball Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1241,"427","Floorball","Finland","Floorball Salibandyliiga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1242,"446","Floorball","Finland","Division 1 Italohko");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1243,"445","Floorball","Finland","Division 1 Lansilohk");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1244,"1201","Floorball","Finland","Floorball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1245,"858","Floorball","Finland","Floorball Naisten Liiga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1246,"936","Floorball","Finland","Floorball Women Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1247,"423","Floorball","Norway","Eliteserien");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1248,"709","Floorball","Norway","Eliteserien (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1249,"422","Floorball","Sweden","Superligan");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1250,"947","Floorball","Sweden","League Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1251,"424","Floorball","Sweden","Superligan (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1252,"1202","Floorball","Switzerland","NAL Mobiliar");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1253,"1409","Floorball","Switzerland","Mobiliar Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1254,"1203","Floorball","Switzerland","NAL Mobiliar Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1255,"1414","Floorball","Switzerland","Mobiliar Cup Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1256,"501","Handball","International","World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1257,"460","Handball","International","Statoil World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1258,"729","Handball","International","World Championships (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1259,"620","Handball","International","European Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1260,"831","Handball","International","GF World Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1261,"1006","Handball","International","Olympic Games");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1262,"1007","Handball","International","Olympic Games (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1263,"876","Handball","International","QS Supercup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1264,"1542","Handball","International","Club Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1265,"736","Handball","International","International League (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1266,"1529","Handball","International","U18 World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1267,"1320","Handball","International","U21 World Championships (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1268,"1517","Handball","International","World Championships U20W");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1269,"702","Handball","International","International Friendlies");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1270,"1052","Handball","International","International Friendlies (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1271,"1059","Handball","International","U18 European Open (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1272,"1077","Handball","International","U18 World Championships (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1273,"396","Handball","Austria","HLA");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1274,"666","Handball","Austria","HLA (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1275,"1021","Handball","Austria","OHB Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1276,"1429","Handball","Austria","Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1277,"720","Handball","Croatia","1.HRL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1278,"721","Handball","Croatia","1.HRL (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1279,"668","Handball","Czech Republic","Extraliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1280,"1444","Handball","Czech Republic","Handball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1281,"388","Handball","Denmark","Handboldligaen");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1282,"716","Handball","Denmark","Tele2 Ligaen");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1283,"805","Handball","Denmark","Danish Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1284,"384","Handball","Denmark","Toms Ligaen (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1285,"717","Handball","Denmark","Division 1 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1286,"806","Handball","Denmark","Danish Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1287,"457","Handball","Europe","Champions League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1288,"1332","Handball","Europe","European Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1289,"458","Handball","Europe","Champions League (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1290,"1299","Handball","Europe","European Championships (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1291,"826","Handball","Europe","Champions Trophy");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1292,"921","Handball","Europe","EHF Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1293,"1033","Handball","Europe","Challenge Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1294,"1029","Handball","Europe","Challenge Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1295,"1111","Handball","Europe","Cup Winners Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1296,"1028","Handball","Europe","Cup Winners Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1297,"922","Handball","Europe","EHF Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1298,"1532","Handball","Europe","European U18 Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1299,"1545","Handball","Europe","Schlecker Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1300,"1082","Handball","Europe","U20 Euro Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1301,"706","Handball","Finland","SM Sarja");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1302,"825","Handball","Finland","Finnish Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1303,"708","Handball","Finland","Sarjat (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1304,"1276","Handball","Finland","Cup(W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1305,"456","Handball","France","Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1306,"662","Handball","France","Division 1 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1307,"382","Handball","Germany","Bundesliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1308,"660","Handball","Germany","2.Bundesliga North");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1309,"1461","Handball","Germany","2.Bundesliga Playoffs");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1310,"661","Handball","Germany","2.Bundesliga South");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1311,"889","Handball","Germany","DFB Pokal");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1312,"1056","Handball","Germany","Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1313,"383","Handball","Germany","Bundesliga (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1314,"1100","Handball","Germany","DHB Pokal (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1315,"701","Handball","Greece","Greek A1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1316,"657","Handball","Hungary","Handball Div 1 Men");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1317,"658","Handball","Hungary","Handball Div 1 Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1318,"705","Handball","Italy","Handball Serie A");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1319,"389","Handball","Norway","Elitserien");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1320,"713","Handball","Norway","Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1321,"881","Handball","Norway","NM Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1322,"385","Handball","Norway","Postenligaen (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1323,"712","Handball","Norway","Division 1 (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1324,"722","Handball","Norway","NM Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1325,"711","Handball","Poland","Extraklasa");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1326,"710","Handball","Poland","Extraklasa (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1327,"653","Handball","Portugal","Professional League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1328,"1322","Handball","Portugal","Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1329,"665","Handball","Romania","Liga National");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1330,"1457","Handball","Romania","Handball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1331,"664","Handball","Romania","Liga National (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1332,"671","Handball","Russia","Super League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1333,"911","Handball","Russia","Super League (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1334,"703","Handball","Slovakia","Extraliga");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1335,"680","Handball","Slovenia","1.A RL Men");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1336,"681","Handball","Slovenia","1.A RL (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1337,"395","Handball","Spain","Liga Asobal");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1338,"1034","Handball","Spain","Copa Del Rey");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1339,"1565","Handball","Spain","Handball");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1340,"1193","Handball","Spain","Division de Honor Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1341,"387","Handball","Sweden","Eliteserien");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1342,"715","Handball","Sweden","Allsvenskan");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1343,"725","Handball","Sweden","Division 1 Norra");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1344,"724","Handball","Sweden","Division 1 Sodra");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1345,"747","Handball","Sweden","Division 2 Norra");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1346,"719","Handball","Sweden","Division 2 Ostra");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1347,"682","Handball","Sweden","Division 2 Vastra");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1348,"386","Handball","Sweden","Eliteserien (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1349,"397","Handball","Switzerland","NHL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1350,"667","Handball","Switzerland","FNLA (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1351,"1379","Handball","Switzerland","Handball Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1352,"1558","Handball","Switzerland","Handball Super Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1353,"1382","Handball","Switzerland","Handball Cup (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1354,"1352","Handball","Turkey","Handball 1st League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1355,"1371","Handball","Turkey","Women Handball 1st League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1356,"991","Bowls","International","Bowls");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1357,"143","Gaelic Football","Gaelic","Football");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1358,"1109","Gaelic Football","Ireland","NFL Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1359,"1112","Gaelic Football","Ireland","NFL Division 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1360,"1113","Gaelic Football","Ireland","NFL Division 3");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1361,"1114","Gaelic Football","Ireland","NFL Division 4");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1362,"11","Aussie Rules","Australia","AFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1363,"1120","Aussie Rules","Australia","Ovans & Murray Football League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1364,"32","Aussie Rules","Australia","NAB Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1365,"1110","Aussie Rules","Australia","SANFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1366,"1417","Aussie Rules","Australia","VFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1367,"1416","Aussie Rules","Australia","WAFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1368,"1563","Aussie Rules","Australia","AFL Canberra");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1369,"1037","Aussie Rules","Australia","AFL Representative Games");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1370,"1430","Aussie Rules","Australia","NTFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1371,"1119","Aussie Rules","Australia","Queensland AFL Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1372,"1566","Aussie Rules","Australia","Sydney AFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1373,"1418","Aussie Rules","Australia","TFL");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1374,"1439","Aussie Rules","Australia","Country/Metro Leagues");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1375,"1559","Aussie Rules","Australia","TAC Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1376,"40","Tennis","International","ATP Tour");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1377,"41","Tennis","International","WTA Tour");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1378,"650","Tennis","International","Doubles");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1379,"71","Darts","International","Darts");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1380,"547","Motor Racing","International","Formula One");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1381,"1424","Motor Racing","International","Speedway World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1382,"1359","Motor Racing","International","Superbikes");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1383,"1360","Motor Racing","International","WRC");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1384,"1471","Motor Racing","International","Le Mans 24Hr");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1385,"1011","Motor Racing","International","Moto 250cc");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1386,"34","Motor Racing","Australia","V8 Supercars");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1387,"1426","Motor Racing","Denmark","Speedway League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1388,"1434","Motor Racing","England","Elite League Speedway");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1389,"507","Motor Racing","Motorbikes","MotoGP");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1390,"1012","Motor Racing","Motorbikes","Moto 125cc");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1391,"1433","Motor Racing","Poland","E-League Speedway");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1392,"1427","Motor Racing","Sweden","Sweden Speedway Eliteserien");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1393,"57","Motor Racing","USA","NASCAR");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1394,"546","Motor Racing","USA","Indy Car");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1395,"1425","Motor Racing","international","Speedway World Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1396,"1283","Winter Sports","International","Alpine Skiing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1397,"1284","Winter Sports","International","Biathlon");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1398,"1342","Winter Sports","International","Bobsleigh");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1399,"1285","Winter Sports","International","Cross Country Skiing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1400,"1355","Winter Sports","International","Figure Skating");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1401,"1353","Winter Sports","International","Freestyle Skiing");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1402,"1343","Winter Sports","International","Luge");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1403,"1286","Winter Sports","International","Nordic Combined");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1404,"1344","Winter Sports","International","Skeleton");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1405,"1287","Winter Sports","International","Ski Jumping");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1406,"1341","Winter Sports","International","Snow Boarding");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1407,"1300","Winter Sports","International","Speed Skating");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1408,"1345","Winter Sports","International","Winter Olympics");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1409,"1106","Cricket","International","Womans World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1410,"31","Cricket","International","World Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1411,"36","Cricket","International","Test Matches");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1412,"24","Cricket","International","One Day Cricket");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1413,"76","Cricket","International","Twenty20");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1414,"1238","Cricket","International","One Day Cricket Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1415,"1239","Cricket","International","Twenty20 Women");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1416,"52","Cricket","Australia","Sheffield Shield");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1417,"51","Cricket","Australia","Ford Ranger Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1418,"483","Cricket","Australia","Twenty20 Big Bash");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1419,"1009","Cricket","India","Indian Premier League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1420,"953","Cricket","India","Indian Cricket League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1421,"1101","Cricket","South Africa","MTN Domestic Championship");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1422,"1030","Cricket","South Africa","Standard Bank Twenty20");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1423,"139","Cricket","United Kingdom","County Division 1");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1424,"140","Cricket","United Kingdom","County Division 2");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1425,"89","Cricket","United Kingdom","Twenty20 Cup");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1426,"1481","Cricket","United Kingdom","Clydesdale Bank 40 League");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1427,"544","Cricket","United Kingdom","Pro40 Division One");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1428,"545","Cricket","United Kingdom","Pro40 Division Two");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1429,"1514","Cricket","West Indies","Caribbean Twenty20");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1430,"1163","Cricket","World Club","Champions League Twenty20");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1431,"891","Netball","International","World Championships (W)");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1432,"1546","Netball","International","Netball Internationals");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1433,"1023","Netball","Oceania","ANZ Championships");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->
<!-- start /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc  DEBUG_TAG-->
addLeague(1434,"53","Yachting","International","Yachting");

<!-- end /home/danielk/dev/includes/puntersparadise/javascriptaddleaguerow.inc DEBUG_TAG-->




<!-- end /home/danielk/dev/includes/puntersparadise/javascriptleagues.inc DEBUG_TAG-->
