澳洲 维珍蓝航空 代码 DJ Virgin Blue

澳洲 维珍蓝航空 Virgin Blue 代码 DJ
2008年03月21日 星期五 07:19 P.M.




全球航空公司资料大全    大洋洲篇
Full Name 英文全称:Virgin Blue Airlines PTY Ltd.
              中文全称:维珍蓝航空公司
logo 航徽标志:

IATA Code: 二字代码:DJ     
ICAO Code: 三字代码:VOZ        
Callsign      呼 号:Virgin
Country 国家和地区:大洋洲 澳大利亚
Hubs 主要基地:
SYD - Sydney airport(Kingsford Smith International Airport) 悉尼嘉峰史密斯国际机场
MEL - Melbourne International Airport(Tullamarine Airport)墨尔本国际机场
BNE - Brisbane International Airport 布里斯班国际机场
ADL - Adelaide International Airport 阿德莱德国际机场
HBA - Hobart International Airport 霍巴特国际机场
Canberra Airport   坎培拉机场
Gold Coast Airport   黄金海岸机场
Launceston Airport    朗塞斯顿机场
based in 总部城市: Brisbane 布里斯班
History 公司简介:
维珍蓝公司是是澳大利亚的第二大航空公司,拥有澳洲最大的航空机队。
维珍蓝公司最初于2000年8月3日,由两架飞机每天提供7个往返于布里斯班和悉尼之间的航班,现已扩大到包括澳洲所有主要城市和度假之间的航线。
现维珍集团对维珍蓝的股份已减少至25% 。
维珍蓝下属公司:
V Australia
Pacific Blue
Polynesian Blue
Fleet机队:截止2008年8月 61 (+10 定购)
22      Boeing 737-700
30      Boeing 737-800
4       Embraer 170
5(10)   Embraer 190
Web Site 公司网址:http://www.virginblue.com.au/

类别:全球航空公司资料大全 大洋洲篇
|

| 添加到搜藏

| 分享到i贴吧
| 浏览()
| 评论 (0)
//*****there is some function。
function checkMail(s)
{
var pattern=/\w+@\w+\.[a-z]+/;
if(pattern.test(s))
{
return true;
}
else
{
return false;
}
}
function checkeandu(eanduid)
{
var eanduvalue=baidu.G(eanduid).value;
var len=baidu.string.getByteLength(eanduvalue);
if(len>128)
{
showErr(2,"您输入的网址或邮箱太长,请保持在128字节以内。");
return false;
}
else
{
return true;
}
}
function checkname(strid)
{
var ele=baidu.G(strid);
var len=baidu.string.getByteLength(ele.value);
if(len>49)
{
showErr(1,"您输入的姓名太长,请保持在49字节以内。");
return false;
}
else
{
if(len==0)
{
baidu.G(strid).value="匿名网友";
}
return true;
}
}
function checktext(textid)
{
var tempStr='';
var isLightFont=false;
if(editor&&textid=="spBlogCmtText"){
tempStr=editor.getHtml();

/*
//火星文处理,能不碰它就别碰它
tempStr=tempStr.replace(//ig,'');
tempStr=tempStr.replace(//ig,'');
*/
baidu.G("spBlogCmtText").value=tempStr;
isLightFont=!(tempStr==editor.getHtml());
}
var str=baidu.string.trim(baidu.G(textid).value);
baidu.G(textid).value=str;

len=str.length;
if(len==0 || ((/^[\s, ]+$/gi).test(str)) )
{
showErr(3,"您必须输入评论内容,请检查。");
return false;
}
else
{
var maxLength=isLightFont?916:1000;
if(len > maxLength)
{
showErr(3,"您输入的评论内容太长,请保持在500字以内。");
return false;
}
if(editor&&textid=="spBlogCmtText"){
baidu.G("spBlogCmtText").value=editor.getHtml();
baidu.G(textid).value=str;
}
return true;
}
}
function showErr(index,str)
{
baidu.G(index+"_err").style.display="";
baidu.G(index+"_err_con").innerHTML=str;
}
function hidErr(index)
{
baidu.G(index+"_err").style.display="none";
baidu.G(index+"_err_con").innerHTML="";
}
function alertPop(tit,con)
{
var pop=new Popup({ contentType:4,isReloadOnClose:false,width:340,height:80});
pop.setContent("title",tit);
pop.setContent("alertCon",con);
pop.build();
pop.show();
}
function cmtfull()
{
var cnum=0;
if(cnum>=50000)
{
alertPop("发表评论","单篇日志评论数最多为50000条.");
return false;
}
else
{
return true;
}
}

var ShareBlog = (function(){
var isHostReply = false;

var asynSubmitForm = (function(){
var _seed = 0,
_submitBox;
return function(url, data){
if(_submitBox)
baidu.dom.empty(_submitBox);
else{
_submitBox = document.createElement("div");
_submitBox.style.display = "none";
document.body.appendChild(_submitBox);
}
_seed++;
var ifrId = "ifr_frd_"+_seed,
formId = 'form_frd_'+_seed,
html = '\
';
var docFrag = document.createDocumentFragment();
for(var i in data){
var ipt = document.createElement("input");
ipt.type = "hidden";
ipt.name = i;
ipt.value = data[i];
docFrag.appendChild(ipt);
}
_submitBox.innerHTML = html;
baidu.g(formId).appendChild(docFrag);
baidu.g(formId).submit();
}
})();
function submitShare(){
asynSubmitForm("http://apps.hi.baidu.com/share/cm",{
"_method" : "create_share",
"auth" : "0",
"bdstoken" : "",
"comment_content" : "",
"dtype" : "json",
"ie" : "utf-8",
"shid" : "",
"title" : "",
"url" : location.href,
"vote_opt" : "分享是美德~"
});
}
function hostReply(){
isHostReply = true;
baidu.g("share_blog").style.display = "none";
}
function cancelReply(){
isHostReply = false;
baidu.g("share_blog").style.display = "";
}
return {
isHostReply : isHostReply,
hostReply : hostReply,
cancelReply : cancelReply,
submit : submitShare
}

})();


function checkcmtform()
{
if(checkname("spBlogCmtor")&&checkeandu("spBlogCmtURL")&&checktext("spBlogCmtText")&&cmtfull())
{
if(baidu.g("shareBlog").checked && !ShareBlog.isHostReply){
baidu.g("shareBlogEchoback").value = "shareblog";
ShareBlog.submit();
}else{
baidu.g("shareBlogEchoback").value = "";
}
submitForm();
return true;
}
else
{
return false;
}
}
var g_pop=null;
function submitForm()
{
g_pop=new Popup({ contentType:1,isReloadOnClose:false,width:340,height:80});
g_pop.setContent("title","添加评论");
g_pop.setContent("contentUrl","");
g_pop.setContent("someDisabledBtn","btn_ok");
g_pop.build();
G("popFormSubmit").target=g_pop.iframeIdName;
g_pop.show();
}
function g_close_pop()
{
g_pop.close();
}
function formatonlinpic()
{
var picobj=document.getElementsByName("onlinepic");
var picnum=picobj.length;
for(var i=0;i200)
{
picobj[i].width=200;
}
if(picobj[i].height>200)
{
picobj[i].height=200;
}
}
try{baidu.G("btn_ok").disabled = "";}catch(e){}
}
function addToFavor(){
var blogTitle='澳洲 维珍蓝航空 Virgin Blue 代码 DJ'.replace(/'/g,'\'');
window.open('http://cang.baidu.com/do/add?it='+encodeURIComponent(blogTitle+'_百度空间')+'&iu='+encodeURIComponent(location.href)+'&fr=sp#nw=1','_s','scrollbars=no,width=600,height=450,right=75,top=20,status=no,resizable=yes');
return false;
}
function addToiTieba(){
var blogTitle='澳洲 维珍蓝航空 Virgin Blue 代码 DJ'.replace(/'/g,'\'');
window.open('http://tieba.baidu.com/i/sys/share?link='+encodeURIComponent('http://hi.baidu.com/yn%5Fzy/blog/item/a3bcc2ef5f9771ebcf1b3e67.html')+'&type=text&title='+encodeURIComponent(blogTitle)+'&content=');
}
function addToShare(){
window.open('http://apps.hi.baidu.com/share/?url='+encodeURIComponent('http://hi.baidu.com/yn%5Fzy/blog/item/a3bcc2ef5f9771ebcf1b3e67.html'));
}
/* some functions for cmt-reply */
var g_cmtorInfo = [];
function goCmtReply(cmtPorID){
//如果是主人的话,回复别人的评论,是不需要显示分享的

cmtreply(g_cmtorInfo[cmtPorID],cmtPorID);
}
function cmtreply(cmtName,cmtPorID)
{
cmtName=cmtName.replace(//g,"");
window.location.hash="#send";
var cmtForm=document.form1;
cmtForm.cm.value="3";
if(!cmtForm.spReferTarget)
{
var ipt=document.createElement("input");
ipt.type="hidden";
ipt.name="spReferTarget";
ipt.value=cmtPorID;
cmtForm.appendChild(ipt);
}else cmtForm.spReferTarget.value=cmtPorID;
//G("reTitle").innerHTML="回复"+cmtName+":";
G("cancleReLink").style.display="";
cmtForm.btn_ok.value="回复评论";
try{
editor.window.focus();
editor.window.document.body.innerHTML="回复"+cmtName+":";
var w = editor.window;
if(w.getSelection){
var d = w.document;
var s = w.getSelection();
var r = d.createRange();
r.setStartAfter(d.body.firstChild);
r.setEndAfter(d.body.lastChild);
s.removeAllRanges();
s.addRange(r);
}
}catch(e){
try{
cmtForm.getElementsByTagName("textarea")[0].focus();
cmtForm.getElementsByTagName("textarea")[0].value="回复"+cmtName+":";
}catch(e){}
}
}
function canclereply()
{
//主人可以分享自己的文章
ShareBlog.cancelReply();
var cmtForm=document.form1;
cmtForm.cm.value="1";
try{cmtForm.removeChild(cmtForm.spReferTarget);}catch(e){}
/*
try{
var cmt=cmtForm.getElementsByTagName("textarea")[0]
cmt.value="";
cmt.focus();
}catch(e){}
*/
try{
var ed=editor.window.document.body;
ed.innerHTML="";
editor.window.focus();
}catch(e){
var cmt=cmtForm.getElementsByTagName("textarea")[0];
cmt.value="";
cmt.focus();
}
G("cancleReLink").style.display="none";
cmtForm.btn_ok.value="发表评论";
}
function gotoreply()
{//to checking whether reply cmt
if( window.location.hash.indexOf("&re=1")0){
_rh1+='';
}else{
_rh1+='';
}
_rh1+='登录后,您就出现在这里。';
_rh2+=' '
}
if(g_read.length==0){
if(Session.isLogin){
_rh1+='最近还没有登录用户看过这篇文章……';
_rh2+=' ';
}
}else{
for(i=0,len=g_read.length;i
CARGO TRACKING
TYPE 
MAWB