


<html>
<head>
<meta name="VI60_defaultClientScript" content="VBScript">
<title>个人用户注册</title>
<meta http-equiv="Content-type" Content="text/html;charset=GB2312">
<link rel="stylesheet" type="text/css" href="../web.css">
<SCRIPT LANGUAGE=vbscript>
<!--
function uname(username)
	if trim(username)="" then
		uname=-1
		
		exit function
	end if
	uname=0
End function

function uacct(acct)
	if trim(acct)="" then
		uacct=-1
		
		exit function
	end if
	uacct=0
End function

function pws(pass)
	if len(trim(pass))<6 then
		pws=-1
		
		exit function
	end if
	pass=trim(pass)
	num=len(trim(pass))
	do while len(pass)>1
		str1=left(pass,1)
		str2=mid(pass,2,1)
		if str1=str2 then
			pass=right(pass,len(pass)-1)
			i=i+1
		else
			exit do
		end if
	loop
	if i=num-1then
		
		pws=-1
		exit function
	end if
	pws=0
End function

function uphone(phone)
	dim str
	str=""
	str=phone
	str=replace (str,"0"," ")
	str=replace (str,"1"," ")
	str=replace (str,"2"," ")
	str=replace (str,"3"," ")
	str=replace (str,"4"," ")
	str=replace (str,"5"," ")
	str=replace (str,"6"," ")
	str=replace (str,"7"," ")
	str=replace (str,"8"," ")
	str=replace (str,"9"," ")
	str=replace (str,"-"," ")
	str=replace (str," "," ")
	str=trim(str)
	if str<>"" then
		uphone=-1
		exit function
	end if
	
	if trim(phone)="" then
		uphone=-1
		exit function
	end if
	uphone=0
	
End function

function uemail(email)
	if trim(email)<>"" then
		if instr(2,email,"@")=0 or instr(3,email,".")=0 then
			uemail=-1
			exit function
		end if
	end if
	uemail=0
End function

function umobile(mobile)
	dim str
	str=""
	str=mobile
	str=replace (str,"0"," ")
	str=replace (str,"1"," ")
	str=replace (str,"2"," ")
	str=replace (str,"3"," ")
	str=replace (str,"4"," ")
	str=replace (str,"5"," ")
	str=replace (str,"6"," ")
	str=replace (str,"7"," ")
	str=replace (str,"8"," ")
	str=replace (str,"9"," ")
	str=replace (str," "," ")
	str=trim(str)
	if str<>"" then
		umobile=-1
		exit function
	end if
	
	if trim(mobile)="" then
		umobile=0
		exit function
	end if
	if len(trim(mobile))<>11 then
		umobile=-1		
		exit function
	end if

	umobile=0
	
End function

function ufax(fax)
	dim str
	str=""
	str=fax
	str=replace (str,"0"," ")
	str=replace (str,"1"," ")
	str=replace (str,"2"," ")
	str=replace (str,"3"," ")
	str=replace (str,"4"," ")
	str=replace (str,"5"," ")
	str=replace (str,"6"," ")
	str=replace (str,"7"," ")
	str=replace (str,"8"," ")
	str=replace (str,"9"," ")
	str=replace (str," "," ")
	str=trim(str)
	if str<>"" then
		ufax=-1
		exit function
	end if
	ufax=0
	
End function

function shipcid(cid)
		if isnumeric(cid)=false then 
			shipcid=-1
			exit function
		end if
		cid=int(cid)
		if isnull(cid) or  cid<400000000 or cid>499999999 then
			shipcid=-1
			exit function
		end if
		shipcid=0
End function

function shipenidi(enidi)
	if isnumeric(enidi)=false then 
		shipenidi=-1
		exit function
	end if
	enidi=cint(enidi)
	if enidi<0 then
		shipenidi=-1
		exit function
	end if
	shipenidi=0
End function

function shipenidp(enidp)
	if isnumeric(enidp)=false then 
		shipenidp=-1
		exit function
	end if
	enidp=cint(enidp)
	if enidp<0 then
		shipenidp=-1
		exit function
	end if
	shipenidp=0
End function

function shipdnid1(dnid1)
	if isnumeric(dnid1)=false then 
		shipdnid1=-1
		exit function
	end if
	dnid1=cint(dnid1)
	if dnid1<0 then
		shipdnid1=-1
		exit function
	end if
	shipdnid1=0
End function


function shipdnid2(dnid2)
	if isnumeric(dnid2)=false then 
		shipdnid2=-1
		exit function
	end if
	dnid2=cint(dnid2)
	if dnid2<0 then
		shipdnid2=-1
		exit function
	end if
	shipdnid2=0
End function


-->
</script>



<script ID="clientEventHandlersVBS" LANGUAGE="vbscript">
<!--
function form1_onsubmit

	dim username,acct,pwd,phone,email,mobile
	username=form1.username.value
	acct=form1.acct.value
	pwd=form1.pwd.value
	
	phone=form1.phone.value
	email=form1.email.value
	
	'mobile=form1.mobile.value
	
	getuname=uname(username)
	if getuname<0 then
		msgbox"用户姓名不能为空！",64,"注意！"
		focusto("username")
		form1_onsubmit=false
		exit function
	end if
	
	getuacct=uacct(acct)
	if getuacct<0 or len(acct)>8 then
		msgbox"用户名不能为空且必须在9位之内！",64,"注意！"
		focusto("acct")
		form1_onsubmit=false
		exit function
	end if
	
	getuphone=uphone(phone)
	if getuphone<0 then
		msgbox"联系电话不能为空！而且必须为数字，空格与'-'！",64,"注意！"
		focusto("phone")
		form1_onsubmit=false
		exit function
	end if
	
		'if mobile<>"" and uphone(mobile) then
		'msgbox"手机号码必须为数字"
		'focusto("mobile")
		'form1_onsubmit=false
		'exit function
		'end if
	
	getpws=pws(pwd)
	if getpws<0 then
		msgbox"密码的位数不少于6位！并且密码各位数不能全部使用同一字符！",64,"注意！"
		focusto("pwd")
		form1_onsubmit=false
		exit function
	end if
	
	getuemail=uemail(email)
	if getuemail<0 then
		msgbox"email当中需包含'@'和'.'字符！",64,"oh,no!"
		focusto("email")
		form1_onsubmit=false
		exit function
	end if
	
	if trim(form1.pwd.value)=trim(form1.acct.value) then
		msgbox"密码与用户名不能相同！",,"注意！"
		focusto("pwd")
		form1_onsubmit=false
		exit function
	end if	
	
	form1_onsubmit=true
	
	
End function
sub focusto(x)
	document.form1.elements(x).focus()
end sub
-->
</script>
</head>
<body topmargin="1" rightMargin="1" leftmargin="1" marginwidth="1" marginheight="1">

<form action="userNew_personal.asp" method="post" name="form1">
<table align="center" border="0" width="98%">
  <tr>
   	<td align="left"><IMG src="../images/mcn_white.gif" border=0></td> 
	<td align=middle><b><strong><font size="4" color="#0297c1">个人用户申请<br>personal application form</font></strong></b></td>  
	<td align="right"><IMG src="../images/inmarsat_white.gif" border=0></td> 

  </tr>
</table>
<table WIDTH="98%" align="center" BORDER="1" CELLSPACING="1" CELLPADDING="1" bordercolorlight="#d0f3ff" bordercolordark="#d0f3ff">          
	<tr>
		<td bgcolor="#d0f3ff"><font color=#0000ff>个人用户信息</font><font size=-1 color=blue>(带*号项为必添内容)Personal information(Mandatory with *)</font>　</td>
	</tr>          
	<tr>
		<td>
			<table border="1" cellpadding="2" width="100%" cellspacing="0" bordercolor="#d0f3ff" bordercolorlight="#808080" bordercolordark="#ffffff">
				<tr>
					<td width="20%">中文姓名*<br>User name：</td>
					<td width="30%"><INPUT  name=username style='width:100%' class=table_c>　</td>
					<td width="20%">用户名<font size="-1">(英文字符)</font>*<br>Login：</td>
					<td width="30%"><INPUT name=acct style='TEXT-TRANSFORM: lowercase' style='width:100%' class=table_c>　</td>     
				</tr>     
				<tr>     
					<td width="20%">电话*<br>Phone：</td>
					<td width="30%"><INPUT type='text' id=phone name=phone style='width:100%' class=table_c>　</td>
					<td width="20%">密码<font size="-1">(6个以上字符)</font>*<br>Password：</td>
					<td width="30%"><INPUT type='password' name=pwd style='width:100%' class=table_c>　</td>
					
				</tr>
				<tr>
					<td width="20%">传真<br>Fax：</td>
					<td width="30%"><INPUT type='text' id=fax name=fax style='width:100%' class=table_c>　</td>
					<td width="20%">密码确认*<br>Confirm password：</td>
					<td width="30%"><INPUT type='password' name=pwd1 style='width:100%' class=table_c>　</td>
				</tr>
				<tr>
					
				    <td  width="20%">电子信箱*<br>Email：</td>
				    <td width="30%"> <INPUT name=email style='width:100%' class=table_c>　</td>
				    <td  width="20%">邮政编码*<br>ZIP：</td>
				    <td width="30%"> <INPUT name=zip style='width:100%' class=table_c>　</td>
				    
				</tr>
				<tr>
					<td width="15%">通讯地址*<BR>Address：</td>
					<td colspan="4" ><INPUT name=address style='width:100%' class=table_c>　</td>
				</tr>
				<!--
				<TD height=16 width="15%">短信服务：</TD>
					<td width="35%" height="16">&nbsp;
					<INPUT  name=checkbox3 type="checkbox" checked >
					允许转发短信
				</td>
          <TD height=16 width="15%">手机号码：</TD>	
					<td width="35%" height="16">
					<input class="table_c" name="mobile" value="" size="15">注：国家代码＋手机号码
					</td>
				-->
			</table>

		</td>	
		
	</tr>
	<tr><td colspan="5" width="740">
		<INPUT type='submit' value='提交Submit'  name=action style='WIDTH: 96px; HEIGHT: 24px' >&nbsp;      
		 <INPUT type='reset' value='重填Reset' name=reset1 style='WIDTH: 96px; HEIGHT: 24px' >&nbsp;	      
		<INPUT type='button' value='返回Return'  name=submit1 onclick='javascript:history.back()' style='WIDTH: 96px; HEIGHT: 24px' >      
		</td>      
	</tr> 
</table>     
  <table border="0" cellpadding="4" cellspacing="0" width="98%">
    <tr>
      <td width="100%" style="FONT-SIZE: 10pt">说明Notes：<br>
1.填写并提交本表单将生成电子申请单,北京船舶通信导航公司将依据该电子申请单开设本系统通信帐户。<br>
&nbsp;&nbsp;To fill in and submit this form for personal user register. <br>
2.本申请仅针对私人用户开放INMARSAT-C通信业务，公司或单位请填写公司申请单。<br>
&nbsp;&nbsp;This form only use for personal user, for company please select Company Application of the homepage.<br>
3.个人用户注册时，最少预交300元人民币至我公司帐号(Deposit 30US$ or 300RMB using following account): 交通银行北京分行和平里支行<br>
帐号：110060224010149098005<br>
北京船舶通信导航公司<br>
4.个人用户通信费用将直接从预交款中扣减，每通信一次按通信量扣减一次，预交款用完可续钱再用，未续款通信帐户保留一年。<br>
&nbsp;&nbsp;Each traffic charge take out from the deposit, more deposit can be added when it's insufficient, the traffic account will expire in one year when zero deposit.<br>
5.成功提交电子申请单后，必须打印成功提交的申请单；签字后以书面形式(邮寄或传真附汇款单)提交北京船舶通信导航公司。<br>
&nbsp;&nbsp;通讯地址:北京市安外外馆后身一号北京船舶通信导航公司,联系人:计费结算中心, Tel:010 65293316, Fax: 010 65293939<br>
&nbsp;&nbsp;Printed personal application form with signed and attached B/E to MCN is required.<br>      </td>
    </tr>
  </table>



</form>
</body>

</html>