function Companies(){
	cmp = new Array(
/* company data () */
		"IID, Inc.<>Vertical media platform leveraged by marketing research and system development",
		"istyle, Inc.<>The largest operator of a Consumer Generated Media on cosmetics @cosme.",
		"rocketstart inc.<>Operator of how to sharing web media nanapi",
		"bijintokei Inc.<>Operates  bijin-tokei , a social internet media",
		"Minna no Wedding Co., Ltd.<>Operates Minna-no Wedding , a wedding related social media.",
		"IBJ<>An infrastructure for matchmaking for arranged marriage service providers",
		"Cafegroove Corporation<>Entertainment media production company",
		"Oisix Inc.<>Internet based mail-order sale of healthy food",
		"KiRAMEX CORPORATION.<>Operates KAUPON, a social commerce platform.",
		"SAVAWAY Co., Ltd.<>E-commerce shop management system (multi-domain shopping cart)",
		"EhonNavi Corporation<>Oerates Consumer Generated Media (product-review) targeted at parents with kids.",
		"SHIMAUMA Print System, Inc<>High quality, low cost internet photo print service for consumer and development and operation of internet photo print system for business partners.",
		"Photocreate Co.,Ltd.<>Manages event photographers and provides an e-commerce platform for event photos.",
		"Bplats, Inc,<>Develops and provides the platform of SaaS and internet commerce.",
		"LIFENET INSURANCE COMPANY<>Provides discount life insurance products mainly through the internet",
		"Commerce21 Corporation<>Develops and provides e-commerce software.",
		"SuRaLa Net Co.,Ltd.<>Interactive E learning system provider for junior high and high school students",
		"Phyzios, Inc.<>Develops applications for touch pannel devices (iPhone, iPad) with its unique visualization and interaction",
		"Indi Software Co., Ltd.<>Production, development, publishing and operation of games including social applications, advertise-games (advertisement and promotion inserted game), consoles, and mobile/smartphone etc",
		"Q Entertainment Inc.<>Poduction, development, publishing and operation of games including consoles, social applications, mobile/smartphone etc",
		"Metacast<>Internet/TV movie tagging, sharing and searching services provider",
		"Interactive Brains Co., LTD.<>3D mobile games for mobile phones",
		"KAYAC Inc.<>Developer/operator of super creative web services",
		"SHIFT Ltd.<>Dvelops a new type of image recognition technology using color code system named &quot;Chameleon code&quot;. Chameleon code has a variety of applications such as factory automation system, attendance system, and asset maintenance system as a substitute of RFID",
		"AiDi Corporation<>Designs and manufactures passive optical network components.",
		"ZettaCore Inc.<>Develops and markets molecular memory technology and products",
		"YUMEMI Inc. <>Mobile commerce solution, sales of mobile/PC commerce package software and mobile mail magazine media operation",
		"a2network corporation<>Operates own MVNO service under BerryMobile brand and provides MVNE (enabling) service for other MVNOs",
		"iCAT<>Simulation software developer for implant surgery as well as sells personalized surgical guide and drill",
		"Global Trust Networks, Inc.<>Guarantor of rent payment for foreign residents in Japan.",
		"Dream Dining Corporation<>New style &quot;Casual Japanese Dining&quot; concept restaurant &quot;Tokyo Table&quot; in USA",
		"Japan Animal Referral Medical Center<>Advanced medical treatment, clinical education as well as research &amp; development",
		"atinn.<>No.1 weekly service apartment provider in Tokai area and also provides property development support survice and property management",
		"Recycle One<>Providing B2B market place, soil contamination assessment service and business development consulting service with the industrial waste disposal industry",
		"Pixta Inc.<>Operates &quot;PIXTA&quot;, the largest micro stock photo website in Japan.",
		"V-cube,Inc.<>A global provider of web based visual communication vehicles",
		"Aucfan Co.,Ltd.<>Operates &quot;Aucfan&quot;, the largest auction/shopping search and statistics website in Japan.",
		"ONE of THEM,Inc.<>Develops and operates mobile contents for smart phones and feature phones."
	);

	
/* randam 3 */
	cmpno = new Array(3);

	num = Math.floor(Math.random() * cmp.length);
	cmpno[0] = (num + "");

	while(cmpno[1]==null || cmpno[1]==cmpno[0]){
		num = Math.floor(Math.random() * cmp.length);
		cmpno[1] = (num + "");
	}

	while(cmpno[2]==null || cmpno[2]==cmpno[1] || cmpno[2]==cmpno[0]){
		num = Math.floor(Math.random() * cmp.length);
		cmpno[2] = (num + "");
	}


/* html */
	cmptxt = new Array(2);

	for(i=0;i<3;i++){
		cmptxt = cmp[cmpno[i]].split("<>");
		document.write("<p class=\"nm\">",cmptxt[0],"</p>\n");
		document.write("<p>",cmptxt[1],"</p>\n");
	}
}

