var lg_handsets = ["Choco (KG800)",
"LGU8110", 
"LGU8110+", 
"LGU8120", 
"LGU8130", 
"LGU8138", 
"LGU8180", 
"LGU8330", 
"LGU8360", 
"LGU8380", 
"LGU8500", 
"LGU880", 
"TU500", 
"LGU890", 
"LGU300"];

var motorola_handsets  = ["V300", 
"V400", 
"V500", 
"V600", 
"V80", 
"V3", 
"V975", 
"V980", 
"ROKR", 
"PEBL", 
"L7", 
"MOT-RAZR-V6", 
"V235"];

var nokia_handsets = ["6020",
"6021",
"6030",
"6060",
"6235i",
"6230",
"6233",
"6235",
"6822",
"7260",
"7270",
"2855",
"3152",
"3155",
"6101",
"6102",
"6111",
"6152",
"6155",
"6165",
"6170",
"6255",
"7360",
"6131",
"6300",
"6133",
"6265i",
"6265",
"7390",
"5300",
"7373",
"6288",
"6126",
"6233",
"6234",
"6131",
"6275",
"6275i",
"6282",
"6270",
"7370",
"6280",
"3230",
"3250",
"6260",
"6600",
"6620",
"6630",
"6670",
"6680",
"6681",
"6682",
"7610",
"N70",
"N73",
"N76",
"N93i",
"N95",
"E50",
"N92",
"6290",
"N75",
"N93",
"N71"];

var samsung_handsets = ["D500", 
"E720", 
"Z500", 
"Z140",
"Z150",
"D600",
"Z510",
"E900",
"D900"];


var sonyericsson_handsets = ["J300", 
"J300i",
"K300",
"K300i",
"F300",
"F300i",	
"K500", 
"K500i",	 
"J500",
"K700", 
"K700i",  
"K750", 
"D750", 
"K600", 
"W800", 
"W800i",  
"W810", 
"V600", 
"V800", 
"Z1010", 
"W550", 
"K608", 
"V630",
"K610i",
"W900",
"W900i",
"K800",
"K800i"];

var sharp_handsets = ["902", 
"903", 
"702"];

function writeSupportedHandsets()
{	
	var i; // our good friend the count variable
	/*	LG	*/
	document.write("<strong> LG </strong>");
	for(i=0; i< lg_handsets.length; i++)
	{
		if( i== lg_handsets.length-1 )
		{	
			document.write(lg_handsets[i]);	
			break;
		}
		document.write(lg_handsets[i]);
		document.write(" ");
	}
	document.write(" <br>");
	/*	Motorola	*/
	document.write("<strong>Motorola </strong>");
	for(i=0; i< motorola_handsets.length; i++)
	{
		if( i== motorola_handsets.length-1 )
		{	
			document.write(motorola_handsets[i]);	
			break;
		}
		document.write(motorola_handsets[i]);
		document.write(" ");
	}
	document.write(" <br>");
	/*	Nokia	*/
	document.write("<strong> Nokia </strong>");
	for(i=0; i< nokia_handsets.length; i++)
	{
		if( i== nokia_handsets.length-1 )
		{	
			document.write(nokia_handsets[i]);	
			break;
		}
		document.write(nokia_handsets[i]);
		document.write(" ");
	}
	document.write(" <br>");
	/*	Samsung	*/
	document.write("<strong> Samsung </strong>");
	for(i=0; i< samsung_handsets.length; i++)
	{
		if( i== samsung_handsets.length-1 )
		{	
			document.write(samsung_handsets[i]);	
			break;
		}
		document.write(samsung_handsets[i]);
		document.write(" ");
		
	}
	document.write(" <br>");
	/*	Sharp	*/
	document.write("<strong> Sharp </strong>");
	for(i=0; i< sharp_handsets.length; i++)
	{
		if( i== sharp_handsets.length-1 )
		{	
			document.write(sharp_handsets[i]);	
			break;
		}
		document.write(sharp_handsets[i]);
		document.write(" ");
	}
	document.write(" <br>");	
	/*	Sony Ericsson */
	document.write("<strong> Sony Ericsson </strong>");
	for(i=0; i< sonyericsson_handsets.length; i++)
	{
		if( i== sonyericsson_handsets.length-1 )
		{	
			document.write(sonyericsson_handsets[i]);	
			break;
		}
		document.write(sonyericsson_handsets[i]);
		document.write(" ");
	}
}
