﻿
function popalert(){
	return true;
}

function bannerlink(){
	//MM_openBrWindow(pg_path+'advisory1.html','advisory1','top=1,left=300,resizable=0,scrollbars=no,width=350,height=700')
	if (popalert())	location.href='http://book.cebupacificair.com?culture=en-US';
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  var popup = window.open(theURL,winName,features);
  if (!popup.opener) 
    popup.opener = self;
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);


/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/
	
var menuwidth='165px' //default menu width
var menubgcolor='#3d8bd2'  //menu bgcolor
var disappeardelay=250  //menu disappear speed onMouseout (in miliseconds)


/////No further editting needed

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function ChangeLocale(fld){
location.href = fld.value;
}


<!-- new header -->
var ddlevelsmenu={

downarrowpointer: ["+pg_path+images/arrow-down.gif", 11,7], //path to "down arrow" image that gets added to main menu items (last 2 parameters should be width/height of img)
rightarrowpointer: [ pg_path +"images/arrow-right.gif", 12,12], //path to "right arrow" image that gets added to LI elements within drop down menu containing additional menus
hideinterval: 250, //delay in milliseconds before sub menu(s) disappears onmouseout.
revealanimate: true, //enable sliding animation when revealing sub menus? (true/false)
httpsiframesrc: "blank.htm", //If menu is run on a secure (https) page, the IFRAME shim feature used by the script should point to an *blank* page *within* the secure area to prevent an IE security prompt. Specify full URL to that page on your server (leave as is if not applicable).

///No need to edit beyond here////////////////////

topmenuids: [], //array containing ids of all the primary menus on the page
topitems: {}, //object array containing all top menu item links
subuls: {}, //object array containing all ULs
topitemsindex: -1,
ulindex: -1,
hidetimers: {}, //object array timer
shimadded: false,
isff3orabove: /Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent) && RegExp.$1>=3, //detect FF3 or above

getoffset:function(what, offsettype){
	return (what.offsetParent)? what[offsettype]+this.getoffset(what.offsetParent, offsettype) : what[offsettype]
},

getoffsetof:function(el){
	el._offsets={left:this.getoffset(el, "offsetLeft"), top:this.getoffset(el, "offsetTop")}
},

getwindowsize:function(){
	this.docwidth=window.innerWidth? window.innerWidth-10 : this.standardbody.clientWidth-10
	this.docheight=window.innerHeight? window.innerHeight-15 : this.standardbody.clientHeight-18
},

gettopitemsdimensions:function(){
	for (var m=0; m<this.topmenuids.length; m++){
		var topmenuid=this.topmenuids[m]
		for (var i=0; i<this.topitems[topmenuid].length; i++){
			var header=this.topitems[topmenuid][i]
			var submenu=document.getElementById(header.getAttribute('rel'))
			header._dimensions={w:header.offsetWidth, h:header.offsetHeight, submenuw:submenu.offsetWidth, submenuh:submenu.offsetHeight}
		}
	}
},

isContained:function(m, e){
	var e=window.event || e
	var c=e.relatedTarget || ((e.type=="mouseover")? e.fromElement : e.toElement)
	while (c && c!=m)try {c=c.parentNode} catch(e){c=m}
	if (c==m)
		return true
	else
		return false
},

addpointer:function(target, imgclass, imginfo){
	var pointer=document.createElement("img")
	pointer.src=imginfo[0]
	pointer.style.width=imginfo[1]+"px"
	pointer.style.height=imginfo[2]+"px"
	pointer.style.left=target.offsetWidth-imginfo[2]-2+"px"
	pointer.className=imgclass
	target.appendChild(pointer)
},

css:function(el, targetclass, action){
	var needle=new RegExp("(^|\\s+)"+targetclass+"($|\\s+)", "ig")
	if (action=="check")
		return needle.test(el.className)
	else if (action=="remove")
		el.className=el.className.replace(needle, "")
	else if (action=="add" && !needle.test(el.className))
		el.className+=" "+targetclass
},

addshimmy:function(target){
	var shim=(!window.opera)? document.createElement("iframe") : document.createElement("div") //Opera 9.24 doesnt seem to support transparent IFRAMEs
	shim.className="ddiframeshim"
	shim.setAttribute("src", location.protocol=="https:"? this.httpsiframesrc : "about:blank")
	shim.setAttribute("frameborder", "0")
	target.appendChild(shim)
	try{
		shim.style.filter='progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)'
	}
	catch(e){}
	return shim
},

positionshim:function(header, submenu, dir, scrollX, scrollY){
	if (header._istoplevel){
		var scrollY=window.pageYOffset? window.pageYOffset : this.standardbody.scrollTop
		var topgap=header._offsets.top-scrollY
		var bottomgap=scrollY+this.docheight-header._offsets.top-header._dimensions.h
		if (topgap>0){
			this.shimmy.topshim.style.left=scrollX+"px"
			this.shimmy.topshim.style.top=scrollY+"px"
			this.shimmy.topshim.style.width="99%"
			this.shimmy.topshim.style.height=topgap+"px" //distance from top window edge to top of menu item
		}
		if (bottomgap>0){
			this.shimmy.bottomshim.style.left=scrollX+"px"
			this.shimmy.bottomshim.style.top=header._offsets.top + header._dimensions.h +"px"
			this.shimmy.bottomshim.style.width="99%"
			this.shimmy.bottomshim.style.height=bottomgap+"px" //distance from bottom of menu item to bottom window edge
		}
	}
},

hideshim:function(){
	this.shimmy.topshim.style.width=this.shimmy.bottomshim.style.width=0
	this.shimmy.topshim.style.height=this.shimmy.bottomshim.style.height=0
},


buildmenu:function(mainmenuid, header, submenu, submenupos, istoplevel, dir){
	header._master=mainmenuid //Indicate which top menu this header is associated with
	header._pos=submenupos //Indicate pos of sub menu this header is associated with
	header._istoplevel=istoplevel
	if (istoplevel){
		this.addEvent(header, function(e){
		ddlevelsmenu.hidemenu(ddlevelsmenu.subuls[this._master][parseInt(this._pos)])
		}, "click")
	}
	this.subuls[mainmenuid][submenupos]=submenu
	header._dimensions={w:header.offsetWidth, h:header.offsetHeight, submenuw:submenu.offsetWidth, submenuh:submenu.offsetHeight}
	this.getoffsetof(header)
	submenu.style.left=0
	submenu.style.top=0
	submenu.style.visibility="hidden"
	this.addEvent(header, function(e){ //mouseover event
		if (!ddlevelsmenu.isContained(this, e)){
			if (typeof ddlevelsmenu.hidetimers[this._master][parseInt(this._pos)]!="undefined")
				clearTimeout(ddlevelsmenu.hidetimers[this._master][parseInt(this._pos)])
			if (this._istoplevel)
				ddlevelsmenu.css(this, "selected", "add")
			var submenu=ddlevelsmenu.subuls[this._master][parseInt(this._pos)]
			ddlevelsmenu.getoffsetof(header)
			var scrollX=window.pageXOffset? window.pageXOffset : ddlevelsmenu.standardbody.scrollLeft
			var scrollY=window.pageYOffset? window.pageYOffset : ddlevelsmenu.standardbody.scrollTop
			var submenurightedge=this._offsets.left + this._dimensions.submenuw + (this._istoplevel && dir=="topbar"? 0 : this._dimensions.w)
			var submenubottomedge=this._offsets.top + this._dimensions.submenuh
			//Sub menu starting left position
			var menuleft=(this._istoplevel? this._offsets.left + (dir=="sidebar"? this._dimensions.w : 0) : this._dimensions.w)
			if (submenurightedge-scrollX>ddlevelsmenu.docwidth){
				menuleft+= -this._dimensions.submenuw + (this._istoplevel && dir=="topbar" ? this._dimensions.w : -this._dimensions.w)
			}
			submenu.style.left=menuleft+"px"
			//Sub menu starting top position
			var menutop=(this._istoplevel? this._offsets.top + (dir=="sidebar"? 0 : this._dimensions.h) : this.offsetTop)
			if (submenubottomedge-scrollY>ddlevelsmenu.docheight){ //no room downwards?
				if (this._dimensions.submenuh<this._offsets.top+(dir=="sidebar"? this._dimensions.h : 0)-scrollY){ //move up?
					menutop+= - this._dimensions.submenuh + (this._istoplevel && dir=="topbar"? -this._dimensions.h : this._dimensions.h)
				}
				else{ //top of window edge
					menutop+= -(this._offsets.top-scrollY) + (this._istoplevel && dir=="topbar"? -this._dimensions.h : 0)
				}
			}
			submenu.style.top=menutop+"px"
			if (ddlevelsmenu.revealanimate==false || ddlevelsmenu.isff3orabove){ //apply shim immediately only if animation is turned off, or if on, in non FF2.x browsers
				ddlevelsmenu.positionshim(header, submenu, dir, scrollX, scrollY)
			}
			else{
				submenu.ff2scrollInfo={x:scrollX, y:scrollY}
			}
			ddlevelsmenu.showmenu(header, submenu, dir)
		}
	}, "mouseover")
	this.addEvent(header, function(e){ //mouseout event
		if (this._istoplevel){
			var submenu=ddlevelsmenu.subuls[this._master][parseInt(this._pos)]
			if (!ddlevelsmenu.isContained(this, e) && !ddlevelsmenu.isContained(submenu, e)) //hide drop down ul if mouse moves out of menu bar item but not into drop down ul itself
				ddlevelsmenu.hidemenu(submenu)
		}
		else if (!this._istoplevel && !ddlevelsmenu.isContained(this, e)){
			var headerlist=this
			ddlevelsmenu.hidetimers[this._master][parseInt(this._pos)]=setTimeout(function(){
				var submenu=ddlevelsmenu.subuls[headerlist._master][parseInt(headerlist._pos)]
				ddlevelsmenu.hidemenu(submenu)
			}, ddlevelsmenu.hideinterval)
		}
	}, "mouseout")
},

showmenu:function(header, submenu, dir){
	if (this.revealanimate){
		submenu._curanimatepoint=0
		var endpoint=(header._istoplevel && dir=="topbar")? submenu.offsetHeight : submenu.offsetWidth
		submenu.style.width=submenu.style.height=0
		submenu.style.overflow="hidden"
		submenu.style.visibility="visible"
		clearTimeout(submenu._animatetimer)
		submenu._animatetimer=setInterval(function(){ddlevelsmenu.revealmenu(header, submenu, endpoint, dir)}, 10)
	}
	else{
		submenu.style.visibility="visible"
	}
},

revealmenu:function(header, submenu, endpoint, dir){
	if (submenu._curanimatepoint<endpoint){
		if (submenu._curanimatepoint==0) //reset either width or height of sub menu to "auto" when animation begins
			submenu.style[header._istoplevel && dir=="topbar"? "width" : "height"]="auto"
		submenu._curanimatepoint= submenu._curanimatepoint + 5 + (submenu._curanimatepoint/10)
		submenu.style[header._istoplevel && dir=="topbar"? "height" : "width"]=submenu._curanimatepoint+"px"
	}
	else{
		if (submenu.ff2scrollInfo) //if this is FF2 or below (meaning shim hasn't been applied yet
			this.positionshim(header, submenu, dir, submenu.ff2scrollInfo.x, submenu.ff2scrollInfo.y)
		submenu.style[header._istoplevel && dir=="topbar"? "height" : "width"]="auto"
		submenu.style.overflow="visible"
		clearInterval(submenu._animatetimer)
	}
},


hidemenu:function(submenu){
	if (typeof submenu._pos!="undefined"){ //if submenu is outermost UL drop down menu
		this.css(this.topitems[submenu._master][parseInt(submenu._pos)], "selected", "remove")
		this.hideshim()
	}
	clearTimeout(submenu._animatetimer)
	submenu.style.left=0
	submenu.style.top="-1000px"
	submenu.style.visibility="hidden"
},


addEvent:function(target, functionref, tasktype) {
	if (target.addEventListener)
		target.addEventListener(tasktype, functionref, false);
	else if (target.attachEvent)
		target.attachEvent('on'+tasktype, function(){return functionref.call(target, window.event)});
},

init:function(mainmenuid, dir){
	this.standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body
	this.topitemsindex=-1
	this.ulindex=-1
	this.topmenuids.push(mainmenuid)
	this.topitems[mainmenuid]=[] //declare array on object
	this.subuls[mainmenuid]=[] //declare array on object
	this.hidetimers[mainmenuid]=[] //declare array on object
	if (!this.shimadded){
		this.shimmy={}
		this.shimmy.topshim=this.addshimmy(document.body) //create top iframe shim obj
		this.shimmy.bottomshim=this.addshimmy(document.body) //create bottom iframe shim obj
		this.shimadded=true
	}
	var menubar=document.getElementById(mainmenuid)
	var alllinks=menubar.getElementsByTagName("a")
	this.getwindowsize()
	for (var i=0; i<alllinks.length; i++){
		if (alllinks[i].getAttribute('rel')){
			this.topitemsindex++
			this.ulindex++
			var menuitem=alllinks[i]
			this.topitems[mainmenuid][this.topitemsindex]=menuitem //store ref to main menu links
			var dropul=document.getElementById(menuitem.getAttribute('rel'))
			dropul.style.zIndex=2000 //give drop down menus a high z-index
			dropul._master=mainmenuid  //Indicate which main menu this main UL is associated with
			dropul._pos=this.topitemsindex //Indicate which main menu item this main UL is associated with
			this.addEvent(dropul, function(){ddlevelsmenu.hidemenu(this)}, "click")
			var arrowpointer=(dir=="sidebar")? "rightarrowpointer" : "downarrowpointer"

			//this.addpointer(menuitem, arrowpointer, this[arrowpointer])
			this.buildmenu(mainmenuid, menuitem, dropul, this.ulindex, true, dir) //build top level menu
			//dropul.onmouseover=function(){
				//do nothing
			//}
			this.addEvent(dropul, function(e){ //hide menu if mouse moves out of main UL element into open space
				if (!ddlevelsmenu.isContained(this, e) && !ddlevelsmenu.isContained(ddlevelsmenu.topitems[this._master][parseInt(this._pos)], e)){
					var dropul=this
					ddlevelsmenu.hidetimers[this._master][parseInt(this._pos)]=setTimeout(function(){
						ddlevelsmenu.hidemenu(dropul)
					}, ddlevelsmenu.hideinterval)
				}
			}, "mouseout")
			var subuls=dropul.getElementsByTagName("ul")
			for (var c=0; c<subuls.length; c++){
				this.ulindex++
				var parentli=subuls[c].parentNode
				this.addpointer(parentli.getElementsByTagName("a")[0], "rightarrowpointer", this.rightarrowpointer)
				this.buildmenu(mainmenuid, parentli, subuls[c], this.ulindex, false, dir) //build sub level menus
			}
		}
	} //end for loop
	this.addEvent(window, function(){ddlevelsmenu.getwindowsize(); ddlevelsmenu.gettopitemsdimensions()}, "resize")
},

setup:function(mainmenuid, dir){
	this.addEvent(window, function(){ddlevelsmenu.init(mainmenuid, dir)}, "load")
}

}
<!-- end of new header -->

document.writeln('<table width="800" border="0" cellspacing="0" cellpadding="0">\r\n<tr>\r\n    <td width="241"><img src="'+img_path+'images\/masthead_ceblogo.jpg" width="241" height="74"><\/td>\r\n    <td width="392" id="announcement">');
var pausecontent=new Array()
//pausecontent[0]='<font color=red>31-Mar-08: IMPORTANT ADVISORY-Booking downtime from March 31 6:30PM - April 1 12nn </font> <A href="javascript:;" title="Click here for more details" onclick="MM_openBrWindow(\''+pg_path+'advisory1.html\',\'advisory1\',\'top=1,left=300,resizable=0,scrollbars=no,width=350,height=700\')">More&raquo;</a></p>';

// -- pausecontent[0]='Eff. Apr. 25 ‘08, visa is required for all guests entering XMN. Pls. check with China embassies in your country for details.</p>';

pausecontent[0]='20-Nov-09: CEB brings back PHP 1 seat sale due to demand <a href="'+pg_path+'../aboutus/press/2009/11202009.html">More&raquo;</a></p>';
pausecontent[1]='16-Nov-09: CEB gives more chances for Christmas travel with P999 seat sale to any domestic destination <a href="'+pg_path+'../aboutus/press/2009/11162009.html">More&raquo;</a></p>';
pausecontent[2]='13-Nov-09: CEB offers P499 seats for bus, ferry routes <a href="'+pg_path+'../aboutus/press/2009/11132009.html">More&raquo;</a></p>';
pausecontent[3]='11-Nov-09: CEB cuts fares by 50% for all domestic and international destinations  <a href="'+pg_path+'../aboutus/press/2009/11112009.html">More&raquo;</a></p>';
pausecontent[4]='09-Nov-09: Cebu Pacific highlights Bangkok flights to Manila and Clark  <a href="'+pg_path+'../aboutus/press/2009/11092009b.html">More&raquo;</a></p>';
pausecontent[5]='09-Nov-09: Cebu Pacific highlights Shanghai flights to Manila  <a href="'+pg_path+'../aboutus/press/2009/11092009a.html">More&raquo;</a></p>';


new pausescroller(pausecontent, "pscroller1", "someclass", 3000)

document.writeln('	<\/td>\r\n    <td width="167"><img src="'+img_path+'images\/masthead_ceb_top.jpg" width="167" height="74"><\/td>\r\n  <\/tr>\r\n<\/table>');


document.write('<div id="ddtopmenubar"><table width="800" border="0" cellspacing="0" cellpadding="0"><tr>')
document.write('<td><img src="'+img_path+'images\/masthead_menubar_left.gif" width="25" height="25">')
document.write('<a href="'+pg_path+'index.html"><img src="'+img_path+'images\/main_home.gif" width="63" height="25" border="0"></a></td>')
document.write('<td><a rel="ddsubmenubookings"><img src="'+img_path+'images\/main_book.gif" width="54" height="25" border="0"></a></td>')	
document.write('<td><a rel="ddsubmenuflightinfo"><img src="'+img_path+'images\/main_flight.gif" width="91" height="25" border="0"></a></td>')	
document.write('<td><a href="'+pg_path+'products/index.html" rel="ddsubmenutravelservices"><img src="'+img_path+'images\/main_travelservice.gif" width="113" height="25" border="0"></a></td>')	
document.write('<td><a href="'+pg_path+'aboutus/index.html" rel="ddsubmenuaboutus"><img src="'+img_path+'images\/main_about.gif" width="195" height="25" border="0"></a></td>')	
document.write('<td><a href="'+pg_path+'help/index.html" rel="ddsubmenuhelpinfo"><img src="'+img_path+'images\/main_help.gif" width="113" height="25" border="0"></a></td>')	
document.write('<td><img src="'+img_path+'images\/masthead_ceb_bottom.gif" width="146" height="25"></td>')	
document.write('</tr></table></div>')

ddlevelsmenu.setup("ddtopmenubar", "topbar")

document.write('<ul id="ddsubmenubookings" class="ddsubmenustyle">')
document.write('<li><a href="http://book.cebupacificair.com/?culture=en-US">フライト</a></li>')
document.write('<li><a href="http://book.cebupacificair.com/RetrieveBooking.aspx?culture=ja-JP">予約の変更</a></li>')
/*document.write('<li><a href="'+pg_path+'products/groupbookings.html">グループ予約</a></li>')*/
document.write('</ul>')

document.write('<ul id="ddsubmenuflightinfo" class="ddsubmenustyle">')
document.write('<li><a href="#">直行便スケジュール</a>')
document.write(' <ul>')
document.write('  <li><a href="javascript:;" title="Flight Schedule" onclick="MM_openBrWindow(\'popflightskeddom.html\',\'flightsked\',\'left=300,top=300,scrollbars=no,resizable=no,width=300,height=260\')">Domestic Flight</a></li>')
document.write('  <li><a href="javascript:;" title="Flight Schedule" onclick="MM_openBrWindow(\'popflightskedinter.html\',\'flightsked\',\'left=300,top=300,scrollbars=no,resizable=no,width=300,height=260\')">International Flight</a></li>')
document.write('  </ul>')
document.write('</li>')
document.write('<li><a href="javascript:;" onClick="MM_openBrWindow(\''+pg_path+'flightinfo\/newroute\/index.htm\',\'poproute\',\'left=10,top=10,scrollbars=yes,resizable=yes,width=760,height=650\')">ルートマップ</a></li>')
document.write('<li><a href="'+pg_path+'aboutus/lowfaresformula.html">GO運賃 </a></li>')
document.write('<li><a href="'+pg_path+'products/gofarerules.html">料金規約</a></li>')
document.write('<li><a href="'+pg_path+'products/golite/">Go Lite</a></li>')
document.write('</ul>')


document.write('<ul id="ddsubmenutravelservices" class="ddsubmenustyle">')
document.write('<li><a href="'+pg_path+'products/golite/golite2seatselector.html">-	座席の選択    </a></li>')
document.write('<li><a href="'+pg_path+'products/golite/golite2excessbaggage.html">過重荷物料金の事前支払い</a></li>')
document.write('<li><a href="'+pg_path+'products/paymentcenters.html">支払場所</a></li>')
document.write('<li><a href="'+pg_path+'products/cargo.html">手荷物サービス </a></li>')
document.write('<li><a href="http://funtours.cebupacificair.com/travel/arc.cfm?tab=p&nav=jaJP">ツアー<</a></li>')
document.write('<li><a href="http://funtours.cebupacificair.com/travel/arc.cfm?tab=r&nav=jaJP ">ホテル込 </a></li>')
document.write('<li><a href="http://www.gotravel.com.ph/">保険</a></li>')
document.write('<li><a href="https://www.europcarasia.com/Cebu/default.aspx">レンタカー</a></li>')
document.write('<li><a href="https://www.ticketworld.com.ph/OnlineCebupacific/default.asp?brand=CebuPacific">Ticketworld</a></li>')
document.write('<li><a href="http://ceb.picatoo.com">Funプリント</a></li>')
document.write('<li><a href="#">Fun Stuff</a>')
document.write('<ul>')
document.write('<li><a href="http://www.cebusmile.com" target="_blank">スマイルマガジン</a></li>')
document.write('<li><a href="'+pg_path+'products/funflights.html">フライト</a></li>')
document.write('<li><a href="'+pg_path+'products/funshop/index.html">ショップ</a></li>')
document.write('</ul>')
document.write('</li>')
document.write('<li><a href="#">Other Stuff</a>')
document.write('<ul>')
document.write('<li><a href="'+pg_path+'products/gomastercard.html">Go Mastercard</a></li>')
document.write('<li><a href="'+pg_path+'../wwfbrightskies">Bright Skies</a></li>')
document.write('</ul>')
document.write('</li>')
document.write('</ul>')

document.write('<ul id="ddsubmenuaboutus" class="ddsubmenustyle">')
document.write('<li><a  href="'+pg_path+'aboutus/index.html">会社概要</a></li>')
document.write('<li><a href="'+pg_path+'aboutus/vision.html">ミッションとビジョン</a></li>')
document.write('<li><a href="'+pg_path+'aboutus/fleet/index.html">私たちの機体</a></li>')
document.write('<li><a href="'+pg_path+'aboutus/corporate.html">法人役員と経営幹部</a></li>')
document.write('<li><a href="'+pg_path+'../aboutus/press/index.html">プレスリリース</a></li>')
document.write('<li><a href="'+pg_path+'aboutus/ads/index.html">私たちの広告を体験しよう</a></li>')
document.write('<li><a href="javascript:;" onClick="window.open(\'http://impact-ph.jobstreet.com/jobs/jobs.asp?eid=29087747&fil=1&did=903&ddt=1\')">採用案内</a></li>')
document.write('</ul>')

document.write('<ul id="ddsubmenuhelpinfo" class="ddsubmenustyle">')
document.write('<li><a href="'+pg_path+'flightinfo/travel_info.html">お役立ち旅行情報 </a></li>')
document.write('<li><a href="'+pg_path+'help/flights.html">FAQs</a></li>')
document.write('<li><a  href="'+pg_path+'help/contact.html">セブパシフィック航空連絡先</a></li>')
document.write('<li><a  href="'+pg_path+'aboutus/sponsorship.html">援助活動</a></li>')
document.write('<li><a  href="'+pg_path+'help/sitesearch.html">サイト検索v</a></li>')
document.write('</ul>')

document.writeln('<table width="800" border="0" cellpadding="0" cellspacing="0" id="languagebar">\r\n  <tr height=25>\r\n<td width=\'5px\'></td><td align=\'left\'><a href=\'http:\/\/book.cebupacificair.com/RetrieveBooking.aspx\'>予約を一覧または変更する</a> | <a href=\'http:\/\/book.cebupacificair.com\/Search.aspx?state=LoginAgent\'>Partners</a></td>    <td>*言語を選択:\r\n      <select name="sellang" onChange="ChangeLocale(this);">\r\n   <option value="#" selected>日本語<\/option>\r\n        <option value="../">英語<\/option>\r\n          <option value="'+pg_path+'..\/web-in\/">インドネシア語<\/option>\r\n          <option value="'+pg_path+'..\/web-bm\/">マレーシア語<\/option>\r\n          <option value="'+pg_path+'..\/web-cn\/">中国語<\/option>\r\n          <option value="'+pg_path+'..\/web-th\/">タイ語<\/option>\r\n   <option value="'+pg_path+'..\/web-kr\/">韓国語 <\/option>\r\n  <option value="'+pg_path+'..\/web-vn\/">ベトナム語 <\/option>\r\n    <\/select>\r\n    <img src="'+img_path+'images\/jp.gif" width=30 height=15 vspace=2 align=absmiddle> <\/td><\/tr><\/table>');
//-->