﻿// JavaScript Document
function contact() {
	address = Array( '955 Hampswood Way, San Jose, CA 95120, U.S.A.', 
					 '上海市延安西路777号裕丰国际大厦27层', 
					 '台北市114内湖区瑞光路302号');
	phone = Array( '+1 (408) 219-8276',
				   '+86 (21) 6213-9806',
				   '');
	fax = Array( '',
				 '+86 (21) 6213-8776',
				 '');
	postcode = Array('200050');
	mailaddress = Array('sales@ngbstreams.com',
						'sales@ngbstreams.com',
						'support@ngbstreams.com');
	chinahr = Array('chinahr@nstreams.com');
	
	if (document.getElementById('UsAddress')) document.getElementById('UsAddress').innerHTML = address[0];
	if (document.getElementById('UsTel')) document.getElementById('UsTel').innerHTML = phone[0];
	if (document.getElementById('UsFax')) document.getElementById('UsFax').innerHTML = fax[0];
	
	if (document.getElementById('ChinaAddress')) document.getElementById('ChinaAddress').innerHTML = address[1];
	if (document.getElementById('ChinaTel')) document.getElementById('ChinaTel').innerHTML = phone[1];
	if (document.getElementById('ChinaFax')) document.getElementById('ChinaFax').innerHTML = fax[1];
	if (document.getElementById('ChinaPostCode')) document.getElementById('ChinaPostCode').innerHTML = postcode[0];
	
	if (document.getElementById('TWAddress')) document.getElementById('TWAddress').innerHTML = address[2];
	if (document.getElementById('TWTel')) document.getElementById('TWTel').innerHTML = phone[2];
	if (document.getElementById('TWFax')) document.getElementById('TWFax').innerHTML = fax[2];
	
	if (document.getElementById('ChinaSales')) document.getElementById('ChinaSales').innerHTML = '<a href="mailto:'+mailaddress[0]+'">'+mailaddress[0]+'</a>';
	if (document.getElementById('UsSales')) document.getElementById('UsSales').innerHTML = '<a href="mailto:'+mailaddress[1]+'">'+mailaddress[1]+'</a>';
	if (document.getElementById('cnsupport')) document.getElementById('cnsupport').innerHTML = '<a href="mailto:'+mailaddress[2]+'">'+mailaddress[2]+'</a>';
	
	if (document.getElementById('chinahr')) document.getElementById('chinahr').innerHTML = '<a href="mailto:'+chinahr[0]+'">nSTREAMS人力资源部</a>';
	
}

function links() {
	office_name = Array('美国和台湾办公室', '中国上海恩讯公司');
	office_url = Array('http://www.nstreams.com', 'index.htm');
	
	if (document.getElementById('ustw')) 
		document.getElementById('ustw').innerHTML = '<a href="'+office_url[0]+'">'+office_name[0]+'</a>';
	if (document.getElementById('ustw')) 
		document.getElementById('cn').innerHTML = '<a href="'+office_url[1]+'">'+office_name[1]+'</a>';

	
	
	
	items = Array('about.htm', 'product.htm', 'contact.htm', 'support.htm', 'sitemap.htm');
	
	if (document.getElementById('about')) document.getElementById('about').innerHTML = '<a href="'+items[0]+'"> 公司简介 </a>';
	if (document.getElementById('product')) document.getElementById('product').innerHTML = '<a href="'+items[1]+'"> 产品展示 </a>';
	if (document.getElementById('contact')) document.getElementById('contact').innerHTML = '<a href="'+items[2]+'"> 联系我们 </a>';
	if (document.getElementById('support')) document.getElementById('support').innerHTML = '<a href="'+items[3]+'"> 技术支持 </a>';
	if (document.getElementById('sitemap')) document.getElementById('sitemap').innerHTML = '<a href="'+items[4]+'"> 站内导航 </a>';
}

function link_editor( ID, Text, Url) {
	if (document.getElementById(ID)) document.getElementById(ID).innerHTML = '<a href="'+ Url +'"> '+ Text +' </a>';
	return true;
}

function menu_Table( menu_Title, menu_Num, color) {
	document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0">');
	document.write('<tr>');
	document.write('<td rowspan="' + (menu_Num+1) + '" id="sub_link_'+ color +'">&nbsp;</td><td>&nbsp;</td>');
	document.write('<td id="sub_link_title">'+ menu_Title +'</td>');
	document.write('</tr>');
	
	for ( i=0; i<menu_Num ;i++) {
		document.write('<tr>');
		document.write('<td id="sub_link_ul_'+ color +'"><img src="images/icon_'+ color +'.gif" alt="Icon_'+ color +'" width="8" height="7" /></td>');
		document.write('<td id="sub_link_'+ color +'_s"><div id="sub_menu'+(i+1)+'"></div></td>');
		document.write('</tr>');
	}
	
	document.write('</table>');
}

function about_sublink() {
	menu_Table( '公司简介', 7, 'green');
	link_editor('sub_menu1', '公司簡介', 'about.htm');
	link_editor('sub_menu2', '用户证明书', 'about_01.htm');
	link_editor('sub_menu3', '恩讯新闻', 'about_02.htm');
	link_editor('sub_menu4', '展览活动', 'about_06.htm');
	link_editor('sub_menu5', '招聘', 'about_03.htm');
	link_editor('sub_menu6', '公司徽标意义', 'about_04.htm');
	link_editor('sub_menu7', '恩讯在中国', 'about_05.htm');
}

function product_sublink() {
	menu_Table( '产品展示', 3, 'orange');
	link_editor('sub_menu1', '解决方案', 'product.htm');
	link_editor('sub_menu2', '联系我们', 'contact.htm');
	link_editor('sub_menu3', '产品文宣下载', 'product_download.htm');
}

function support_sublink() {
	menu_Table( '技术支持', 2, 'blue');
	link_editor('sub_menu1', '技术支持', 'support.htm');
	link_editor('sub_menu2', '经销商支持', 'support_dealer.htm');
}

