function Companies(){
	cmp = new Array(
/* company data () */
		"Money Square Japan Inc.<>Internet-based currency broker and market maker",
		"Dears Brain<>Operates &quot;Guest house&quot; style wedding facilities and services",
		"Recycle One<>Providing B2B market place, soil contamination assessment service and business development consulting service with the industrial waste disposal industry",
		"atinn.<>No.1 weekly service apartment provider in Tokai area and also provides property development support survice and property management",
		"IBJ<>An infrastructure for matchmaking for arranged marriage service providers",
		"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",
		"byZOO Corporation<>Providing one-on-one tailor made English lessons specifically for females",
		"AcuteLogic Corporation<>Digital Image Processing Software and camera modules",
		"Digital Media Professionals Inc.<>Development and sales of next generation 3D graphics chips and Intellectual Properties",
		"FCOM<>Food related services such as R&amp;D, OEM manufacturing, sales and licensing, through uniquely developed &quot;Organic Nano Composite&quot; impregnation technology",
		"REALCOM Inc.<>Knowledge Management Engine (Listed on the Mothers market of the Tokyo Stock Exchange: 3856)",
		"Universal Solution Systems<>ASP/BPO for Restaurant and Retail chain (Listed on the JASDAQ Securities Exchange: 3390)",
		"Works Applications<>HR and Payroll Management, ERP Package Software (Listed on the JASDAQ Securities Exchange: 4329)",
		"Interscope Inc.<>Internet-based Market Research Solution",
		"FISCO Ltd.<>Real-time Financial Information Service (Listed on the Hercules market of the Osaka Stock Exchange: 3807)",
		"GDH K.K.<>Digital Animation Production (Listed on the Mothers market of the Tokyo Stock Exchange: 3755)",
		"GREE, Inc.<>Social Networking Service(Listed on the Mothers market of the Tokyo Stock Exchange: 3632)",
		"iCAT<>Simulation software developer for implant surgery as well as sells personalized surgical guide and drill",
		"Cafegroove Corporation<>Entertainment media production company",
		"Interactive Brains Co., LTD.<>3D mobile games for mobile phones",
		"CLARA ONLINE Inc.,<>Hosting service provider of Internet server and IP domain",
		"a2network corporation<>Operates own MVNO service under BerryMobile brand and provides MVNE (enabling) service for other MVNOs",
		"ZettaCore Inc.<>Develops and markets molecular memory technology and products",
		"LIFENET INSURANCE COMPANY<>Provides discount life insurance products mainly through the internet",
		"Metacast<>Internet/TV movie tagging, sharing and searching services provider",
		"Bplats, Inc,<>Develops and provides the platform of SaaS and internet commerce.",
		"Photocreate Co.,Ltd.<>Manages event photographers and provides an e-commerce platform for event photos.",
		"Commerce21 Corporation<>Develops and provides e-commerce software.",
		"AiDi Corporation<>Designs and manufactures passive optical network components."
	);

	
/* 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");
	}
}
