Help
RSS
API
Feed
Maltego
Contact
Domain > supsangdaoresort.com
×
Welcome!
Right click nodes and scroll the mouse to navigate the graph.
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2013-05-11
74.220.215.60
(
ClassC
)
2024-11-14
67.20.76.226
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyDate: Thu, 14 Nov 2024 09:18:19 GMTServer: ApacheLocation: https://supsangdaoresort.com/Content-Length: 237Content-Type: text/html; charsetiso-8859-1 !DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN>html>head>title>301 Moved Permanently/title>/head>body>h1>Moved Permanently/h1>p>The document has moved a hrefhttps://supsangdaoresort.com/>here/a>./p>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Thu, 14 Nov 2024 09:18:20 GMTServer: ApacheUpgrade: h2,h2cConnection: UpgradeLast-Modified: Sat, 04 Dec 2021 11:58:10 GMTAccept-Ranges: bytesContent-Length: 35960Vary: Accept-EncodingContent-Type: text/html !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd>html xmlnshttp://www.w3.org/1999/xhtml>!-- InstanceBegin template/Templates/Temp.dwt codeOutsideHTMLIsLockedfalse -->head>meta http-equivContent-Type contenttext/html; charsetiso-8859-1 />!-- InstanceBeginEditable namedoctitle -->title>Supsangdao Resort, Krabi/title>!-- InstanceEndEditable -->link hrefsubsangdoa.css relstylesheet typetext/css />!-- InstanceBeginEditable namehead -->!-- InstanceEndEditable -->/head>link hrefandaman.css relstylesheet typetext/css />style typetext/css>!--.style1 {color: #938139}-->/style>SCRIPT languageJavaScript>var datePickerDivID datepicker;var iFrameDivID datepickeriframe;var dayArrayShort new Array(Su, Mo, Tu, We, Th, Fr, Sa);var dayArrayMed new Array(Sun, Mon, Tue, Wed, Thu, Fri, Sat);var dayArrayLong new Array(Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday);var monthArrayShort new Array(Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec);var monthArrayMed new Array(Jan, Feb, Mar, Apr, May, June, July, Aug, Sept, Oct, Nov, Dec);var monthArrayLong new Array(January, February, March, April, May, June, July, August, September, October, November, December); var defaultDateSeparator /; // common values would be / or .var defaultDateFormat dmy // valid values are dmy, dmy, and ymdvar dateSeparator defaultDateSeparator;var dateFormat defaultDateFormat;function displayDatePicker(dateFieldName, displayBelowThisObject, dtFormat, dtSep){ var targetDateField document.getElementsByName (dateFieldName).item(0); // if we werent told what node to display the datepicker beneath, just display it // beneath the date field were updating if (!displayBelowThisObject) displayBelowThisObject targetDateField; // if a date separator character was given, update the dateSeparator variable if (dtSep) dateSeparator dtSep; else dateSeparator defaultDateSeparator; // if a date format was given, update the dateFormat variable if (dtFormat) dateFormat dtFormat; else dateFormat defaultDateFormat; var x displayBelowThisObject.offsetLeft; var y displayBelowThisObject.offsetTop + displayBelowThisObject.offsetHeight ; // deal with elements inside tables and such var parent displayBelowThisObject; while (parent.offsetParent) { parent parent.offsetParent; x + parent.offsetLeft; y + parent.offsetTop ; } drawDatePicker(targetDateField, x, y);}/**Draw the datepicker object (which is just a table with calendar elements) at thespecified x and y coordinates, using the targetDateField object as the input tagthat will ultimately be populated with a date.This function will normally be called by the displayDatePicker function.*/function drawDatePicker(targetDateField, x, y){ var dt getFieldDate(targetDateField.value ); // the datepicker table will be drawn inside of a div> with an ID defined by the // global datePickerDivID variable. If such a div doesnt yet exist on the HTML // document were working with, add one. if (!document.getElementById(datePickerDivID)) { // dont use innerHTML to update the body, because it can cause global variables // that are currently pointing to objects on the page to have bad references //document.body.innerHTML + div id + datePickerDivID + classdpDiv>/div>; var newNode document.createElement(div); newNode.setAttribute(id, datePickerDivID); newNode.setAttribute(class, dpDiv); newNode.setAttribute(style, visibility: hidden;); document.body.appendChild(newNode); } // move the datepicker div to the proper x,y coordinate and toggle the visiblity var pickerDiv document.getElementById(datePickerDivID); pickerDiv.style.position absolute; pickerDiv.style.left x + px; pickerDiv.style.top y + px; pickerDiv.style.visibility (pickerDiv.style.visibility visible ? hidden : visible); pickerDiv.style.display (pickerDiv.style.display block ? none : block); pickerDiv.style.zIndex 10000; // draw the datepicker table refreshDatePicker(targetDateField.name, dt.getFullYear(), dt.getMonth(), dt.getDate());}/**This is the function that actually draws the datepicker calendar.*/function refreshDatePicker(dateFieldName, year, month, day){ // if no arguments are passed, use todays date; otherwise, month and year // are required (if a day is passed, it will be highlighted later) var thisDay new Date(); if ((month > 0) && (year > 0)) { thisDay new Date(year, month, 1); } else { day thisDay.getDate(); thisDay.setDate(1); } // the calendar will be drawn as a table // you can customize the table elements with a global CSS style sheet, // or by hardcoding style and formatting elements below var crlf \r\n; var TABLE table cols7 classdpTable> + crlf; var xTABLE /table> + crlf; var TR tr classdpTR>; var TR_title tr classdpTitleTR>; var TR_days tr classdpDayTR>; var TR_todaybutton tr classdpTodayButtonTR>; var xTR /tr> + crlf; var TD td classdpTD onMouseOutthis.className\dpTD\; onMouseOver this.className\dpTDHover\; ; // leave this tag open, because well be adding an onClick event var TD_title td colspan5 classdpTitleTD>; var TD_buttons td classdpButtonTD>; var TD_todaybutton td colspan7 classdpTodayButtonTD>; var TD_days td classdpDayTD>; var TD_selected td classdpDayHighlightTD onMouseOutthis.className\dpDayHighlightTD\; onMouseOverthis.className\dpTDHover\; ; // leave this tag open, because well be adding an onClick event var xTD /td> + crlf; var DIV_title div classdpTitleText>; var DIV_selected div classdpDayHighlight>; var xDIV /div>; // start generating the code for the calendar table var html TABLE; // this is the title bar, which displays the month and the buttons to // go back to a previous month or forward to the next month html + TR_title; html + TD_buttons + getButtonCode(dateFieldName, thisDay, -1, <) + xTD; html + TD_title + DIV_title + monthArrayLong thisDay.getMonth() + + thisDay.getFullYear() + xDIV + xTD; html + TD_buttons + getButtonCode(dateFieldName, thisDay, 1, >) + xTD; html + xTR; // this is the row that indicates which day of the week were on html + TR_days; for(i 0; i dayArrayShort.length; i++) html + TD_days + dayArrayShorti + xTD; html + xTR; // now well start populating the table with days of the month html + TR; // first, the leading blanks for (i 0; i thisDay.getDay(); i++) html + TD + + xTD; // now, the days of the month do { dayNum thisDay.getDate(); TD_onclick onclick\updateDateField( + dateFieldName + , + getDateString(thisDay) + );\>; if (dayNum day) html + TD_selected + TD_onclick + DIV_selected + dayNum + xDIV + xTD; else html + TD + TD_onclick + dayNum + xTD; // if this is a Saturday, start a new row if (thisDay.getDay() 6) html + xTR + TR; // increment the day thisDay.setDate(thisDay.getDate() + 1); } while (thisDay.getDate() > 1) // fill in any trailing blanks if (thisDay.getDay() > 0) { for (i 6; i > thisDay.getDay(); i--) html + TD + + xTD; } html + xTR; // add a button to allow the user to easily return to today, or close the calendar var today new Date(); var todayString Today is + dayArrayMedtoday.getDay() + , + monthArrayMed today.getMonth() + + today.getDate(); html + TR_todaybutton + TD_todaybutton; html + button classdpTodayButton onClickrefreshDatePicker(\ + dateFieldName + \);>this month/button> ; html + button classdpTodayButton onClickupdateDateField(\ + dateFieldName + \);>close/button>; html + xTD + xTR; // and finally, close the table html + xTABLE; document.getElementById(datePickerDivID).innerHTML html; // add an iFrame shim to allow the datepicker to display above selection lists adjustiFrame();}/**Convenience function for writing the code for the buttons that bring us back or forwarda month.*/function getButtonCode(dateFieldName, dateVal, adjust, label){ var newMonth (dateVal.getMonth () + adjust) % 12; var newYear dateVal.getFullYear() + parseInt((dateVal.getMonth() + adjust) / 12); if (newMonth 0) { newMonth + 12; newYear + -1; } return button classdpButton onClickrefreshDatePicker(\ + dateFieldName + \, + newYear + , + newMonth + );> + label + /button>;}/**Convert a JavaScript Date object to a string, based on the dateFormat and dateSeparatorvariables at the beginning of this script library.*/function getDateString(dateVal){ var dayString 00 + dateVal.getDate(); var monthString 00 + (dateVal.getMonth()+1); dayString dayString.substring(dayString.length - 2); monthString monthString.substring(monthString.length - 2); switch (dateFormat) { case dmy : return dayString + dateSeparator + monthString + dateSeparator + dateVal.getFullYear(); case ymd : return dateVal.getFullYear() + dateSeparator + monthString + dateSeparator + dayString; case dmy : default : return monthString + dateSeparator + dayString + dateSeparator + dateVal.getFullYear(); }}/**Convert a string to a JavaScript Date object.*/function getFieldDate(dateString){ var dateVal; var dArray; var d, m, y; try { dArray splitDateString(dateString); if (dArray) { switch (dateFormat) { case dmy : d parseInt(dArray0, 10); m parseInt(dArray1, 10) - 1; y parseInt(dArray2, 10); break; case ymd : d parseInt(dArray2, 10); m parseInt(dArray1, 10) - 1; y parseInt(dArray0, 10); break; case dmy : default : d parseInt(dArray1, 10); m parseInt(dArray0, 10) - 1; y parseInt(dArray2, 10); break; } dateVal new Date(y, m, d); } else if (dateString) { dateVal new Date(dateString); } else { dateVal new Date(); } } catch(e) { dateVal new Date(); } return dateVal;}/**Try to split a date string into an array of elements, using common date separators.If the date is split, an array is returned; otherwise, we just return false.*/function splitDateString(dateString){ var dArray; if (dateString.indexOf(/) > 0) dArray dateString.split(/); else if (dateString.indexOf(.) > 0) dArray dateString.split(.); else if (dateString.indexOf(-) > 0) dArray dateString.split(-); else if (dateString.indexOf(\\) > 0) dArray dateString.split(\\); else dArray false; return dArray;}/**Update the field with the given dateFieldName with the dateString that has been passed,and hide the datepicker. If no dateString is passed, just close the datepicker withoutchanging the field value.Also, if the page developer has defined a function called datePickerClosed anywhere onthe page or in an imported library, we will attempt to run that function with the updatedfield as a parameter. This can be used for such things as date validation, setting defaultvalues for related fields, etc. For example, you might have a function like this to validatea start date field:function datePickerClosed(dateField){ var dateObj getFieldDate(dateField.value); var today new Date(); today new Date(today.getFullYear(), today.getMonth(), today.getDate()); if (dateField.name StartDate) { if (dateObj today) { // if the date is before today, alert the user and display the datepicker again alert(Please enter a date that is today or later); dateField.value ; document.getElementById(datePickerDivID).style.visibility visible; adjustiFrame(); } else { // if the date is okay, set the EndDate field to 7 days after the StartDate dateObj.setTime(dateObj.getTime() + (7 * 24 * 60 * 60 * 1000)); var endDateField document.getElementsByName (EndDate).item(0); endDateField.value getDateString(dateObj); } }}*/function updateDateField(dateFieldName, dateString){ var targetDateField document.getElementsByName (dateFieldName).item(0); if (dateString) targetDateField.value dateString; var pickerDiv document.getElementById(datePickerDivID); pickerDiv.style.visibility hidden; pickerDiv.style.display none; adjustiFrame(); targetDateField.focus(); // after the datepicker has closed, optionally run a user-defined function called // datePickerClosed, passing the field that was just updated as a parameter // (note that this will only run if the user actually selected a date from the datepicker) if ((dateString) && (typeof(datePickerClosed) function)) datePickerClosed(targetDateField);}/**Use an iFrame shim to deal with problems where the datepicker shows up behindselection list elements, if theyre below the datepicker. The problem and solution aredescribed at:http://dotnetjunkies.com/WebLog/jking/archive/2003/07/21/488.aspxhttp://dotnetjunkies.com/WebLog/jking/archive/2003/10/30/2975.aspx*/function adjustiFrame(pickerDiv, iFrameDiv){ // we know that Opera doesnt like something about this, so if we // think were using Opera, dont even try var is_opera (navigator.userAgent.toLowerCase().indexOf(opera) ! -1); if (is_opera) return; // put a try/catch block around the whole thing, just in case try { if (!document.getElementById(iFrameDivID)) { // dont use innerHTML to update the body, because it can cause global variables // that are currently pointing to objects on the page to have bad references //document.body.innerHTML + iframe id + iFrameDivID + srcjavascript:false; scrollingno frameborder0>; var newNode document.createElement(iFrame); newNode.setAttribute(id, iFrameDivID); newNode.setAttribute(src, javascript:false;); newNode.setAttribute(scrolling, no); newNode.setAttribute (frameborder, 0); document.body.appendChild(newNode); } if (!pickerDiv) pickerDiv document.getElementById(datePickerDivID); if (!iFrameDiv) iFrameDiv document.getElementById(iFrameDivID); try { iFrameDiv.style.position absolute; iFrameDiv.style.width pickerDiv.offsetWidth; iFrameDiv.style.height pickerDiv.offsetHeight ; iFrameDiv.style.top pickerDiv.style.top; iFrameDiv.style.left pickerDiv.style.left; iFrameDiv.style.zIndex pickerDiv.style.zIndex - 1; iFrameDiv.style.visibility pickerDiv.style.visibility ; iFrameDiv.style.display pickerDiv.style.display; } catch(e) { } } catch (ee) { } }/SCRIPT>script languagejavascript typetext/javascript>function CheckCarlendar(){ var check document.search.DateIn.value; var chkdate check.substring(0,2); var chkmonth check.substring(3,5); var chkyear check.substring(6); var chkendMonth chkdate + / + chkmonth var currentTime new Date() var day currentTime.getDate() var year currentTime.getFullYear() var monthnew Array(12); month001; month102; month203; month304; month405; month506; month607; month708; month809; month910; month1011; month1112; var month monthcurrentTime.getMonth() chkyear2 parseInt(chkyear); chkyear3 chkyear2%4; chkyear4 chkyear2 + 1; if(check !){ if(chkendMonth 31/01 || chkendMonth 31/03 || chkendMonth 30/04 || chkendMonth 31/05 || chkendMonth 30/06 || chkendMonth 31/07 || chkendMonth 31/08 || chkendMonth 30/09){ var chkmonth22 chkmonth.substring(1,2); MonthIn parseInt(chkmonth22); newmonth MonthIn + 1; var newdate 1 ; var newdate2 0 + newdate; if(newmonth 1 || newmonth 2 || newmonth 3 || newmonth 4 || newmonth 5 || newmonth 6 || newmonth 7 || newmonth 8 || newmonth 9){ var newmonth2 0 + newmonth ; }else{ var newmonth2 newmonth ; } var Outdate newdate2 + / + newmonth2 + / + chkyear document.search.DateOut.value Outdate; }else if(chkendMonth 31/10 || chkendMonth 30/11){ MonthIn parseInt(chkmonth); newmonth MonthIn + 1; var newdate 1 ; var newdate2 0 + newdate; if(newmonth 1 || newmonth 2 || newmonth 3 || newmonth 4 || newmonth 5 || newmonth 6 || newmonth 7 || newmonth 8 || newmonth 9){ var newmonth2 0 + newmonth ; }else{ var newmonth2 newmonth ; } var Outdate newdate2 + / + newmonth2 + / + chkyear document.search.DateOut.value Outdate; }else if(chkyear3 0 && chkendMonth 29/02){ var Outdate 01 + / + 03 + / + chkyear document.search.DateOut.value Outdate; }else if(chkyear3 ! 0 && chkendMonth 28/02){ var Outdate 01 + / + 03 + / + chkyear document.search.DateOut.value Outdate; }else if(chkendMonth 31/12){ var Outdate 01 + / + 01 + / + chkyear4 document.search.DateOut.value Outdate; }else if(chkdate 08){ var Outdate 09 + / + chkmonth + / + chkyear document.search.DateOut.value Outdate; }else if(chkdate 09){ var Outdate 10 + / + chkmonth + / + chkyear document.search.DateOut.value Outdate; }else{ newdate parseInt(chkdate); newdate2 newdate + 1; if(newdate2 1 || newdate2 2 || newdate2 3 || newdate2 4 || newdate2 5 || newdate2 6 || newdate2 7 || newdate2 8 || newdate2 9){ var newdate3 0 + newdate2 ; }else{ var newdate3 newdate2 ; } var Outdate newdate3 + / + chkmonth + / + chkyear document.search.DateOut.value Outdate; } }}function CheckSubmit(){ return true;}/script>STYLE>BODY { FONT-SIZE: 0.8em; FONT-FAMILY: Verdana, Tahoma, Arial, Helvetica, sans-serif}.dpDiv { }.dpTable { BORDER-RIGHT: #aaaaaa 1px solid; BORDER-TOP: #aaaaaa 1px solid; FONT-SIZE: 12px; BORDER-LEFT: #aaaaaa 1px solid; COLOR: #505050; BORDER-BOTTOM: #aaaaaa 1px solid; FONT-FAMILY: Tahoma, Arial, Helvetica, sans-serif; BACKGROUND-COLOR: #ece9d8; TEXT-ALIGN: center}.dpTR { }.dpTitleTR { }.dpDayTR { }.dpTodayButtonTR { }.dpTD { BORDER-RIGHT: #ece9d8 1px solid; BORDER-TOP: #ece9d8 1px solid; BORDER-LEFT: #ece9d8 1px solid; BORDER-BOTTOM: #ece9d8 1px solid}.dpDayHighlightTD { BORDER-RIGHT: #aaaaaa 1px solid; BORDER-TOP: #aaaaaa 1px solid; BORDER-LEFT: #aaaaaa 1px solid; BORDER-BOTTOM: #aaaaaa 1px solid; BACKGROUND-COLOR: #cccccc}.dpTDHover { BORDER-RIGHT: #888888 1px solid; BORDER-TOP: #888888 1px solid; BORDER-LEFT: #888888 1px solid; CURSOR: pointer; COLOR: red; BORDER-BOTTOM: #888888 1px solid; BACKGROUND-COLOR: #aca998}.dpTitleTD { }.dpButtonTD { }.dpTodayButtonTD { }.dpDayTD { BORDER-RIGHT: #aaaaaa 1px solid; BORDER-TOP: #aaaaaa 1px solid; BORDER-LEFT: #aaaaaa 1px solid; COLOR: white; BORDER-BOTTOM: #aaaaaa 1px solid; BACKGROUND-COLOR: #cccccc}.dpTitleText { FONT-WEIGHT: bold; FONT-SIZE: 12px; COLOR: gray}.dpDayHighlight { FONT-WEIGHT: bold; COLOR: #4060ff}.dpButton { PADDING-RIGHT: 0px; PADDING-LEFT: 0px; FONT-WEIGHT: bold; FONT-SIZE: 10px; BACKGROUND: #d8e8ff; PADDING-BOTTOM: 0px; COLOR: gray; PADDING-TOP: 0px; FONT-FAMILY: Verdana, Tahoma, Arial, Helvetica, sans-serif}.dpTodayButton { FONT-WEIGHT: bold; FONT-SIZE: 10px; BACKGROUND: #d8e8ff; COLOR: gray; FONT-FAMILY: Verdana, Tahoma, Arial, Helvetica, sans-serif}.style13 {color: #847433}/STYLE>script typetext/javascript>!--function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features);}//-->/script>body>table width980 aligncenter cellpadding0 cellspacing0> tr> td width10 backgroundimages/borderleft.gif> /td> td>table width100% cellspacing0 cellpadding0> tr> td height74>table width93% aligncenter cellpadding0 cellspacing0> tr> td width308>img srcimages/logo.gif width308 height20 />/td> td>table width180 alignright cellpadding0 cellspacing0> tr> td classfootter>Change Language :/td> td width42>a hrefhttp://www.supsangdaoresort.com/>img srcimages/lang-eng.gif width32 height24 border0 />/a>/td> td width32>a hrefhttp://www.supsangdaoresort.com/thai>img srcimages/lang-thai.gif width32 height24 border0 />/a>/td> /tr> /table>/td> /tr> /table>/td> /tr> tr> td>table width100% cellspacing0 cellpadding0> tr> td width85>a hrefindex.html>img srcimages/menu-home.gif width85 height39 border0 />/a>/td> td width172>a hrefsupsangdoa-resort-room-rate.html>img srcimages/menu-room.gif width172 height39 border0 />/a>/td> td width164>a hrefsupsangdoa-resort-photo-gallery.html>img srcimages/menu-photogallery.gif width164 height39 border0 />/a>/td> td width124>a hrefsupsangdoa-resort-facilities.html>img srcimages/menu-facilities.gif width124 height39 border0 />/a>/td> td width135>a hrefsupsangdoa-resort-contact.php>img srcimages/menu-contact.gif width135 height39 border0 />/a>/td> td>img srcimages/menu-call.gif width280 height39 />/td> /tr> /table>/td> /tr> tr> td>!-- InstanceBeginEditable nameEditRegion3 -->img srcimages/1.jpg width960 height380 />!-- InstanceEndEditable -->/td> /tr> tr> td bgcolor#201309>img srcimages/tab.gif width5 height5 />/td> /tr> tr> td>table width100% cellspacing0 cellpadding0> tr> td width278 valigntop bgcolor#0c110c stylepadding-top:10px>form idsearch namesearch methodpost actionreservation.php> table width90% aligncenter cellpadding0 cellspacing0> tr> td backgroundimages/bgform2.gif stylepadding-top:10px; padding-bottom:10px>table width90% aligncenter cellpadding0 cellspacing0> tr> td>h2 aligncenter>Reservation Online /h2>/td> /tr> tr> td classcheckin>Check in date /td> /tr> tr> td>table width100% cellspacing0 cellpadding0> tr> td>input nameDateIn typetext onFocusCheckCarlendar() onBlurCheckCarlendar() onChangeCheckCarlendar() onKeyUpCheckCarlendar() idDateIn style font-size:11px; color: #FFFFFF; background-image: url(images/bgform.gif); border: 0px #000000; width:200px; height:16px />/td> td>a hrefjavascript:void(0); onclickdisplayDatePicker(DateIn);>img srcimages/reser-calenda.gif width16 height18 border0 />/a>/td> /tr> /table>/td> /tr> tr> td classcheckin stylepadding-top:5px>Check out date /td> /tr> tr> td>table width100% cellspacing0 cellpadding0> tr> td>input nameDateOut typetext idDateOut style font-size:11px; color: #FFFFFF; background-image: url(images/bgform.gif); border: 0px #000000; width:200px; height:16px />/td> td>a hrefjavascript:void(0); onclickdisplayDatePicker(DateOut);>img srcimages/reser-calenda.gif width16 height18 border0 />/a>/td> /tr> /table>/td> /tr> tr> td stylepadding-top:5px>table width100% cellspacing0 cellpadding0> tr> td width60 classcheckin>Room/td> td width60 classcheckin>Adult/td> td classcheckin>Child/td> /tr> /table>/td> /tr> tr> td>table width100% cellspacing0 cellpadding0> tr> td width60>select nameroom style color: #FFFFFF;background-color:#463626; font-size:11px; border: 0px #000000; width:45px; height:18px> option value1 >1/option> option value2 >2/option> option value3 >3/option> option value4 >4/option> option value5 >5/option> option value6 >6/option> option value7 >7/option> option value8 >8/option> option value9 >9/option> option value10 >10/option> option value11 >11/option> option value12 >12/option> option value13 >13/option> option value14 >14/option> option value15 >15/option> option value16 >16/option> option value17 >17/option> option value18 >18/option> option value19 >19/option> option value20 >20/option> /select> /td> td width60>select nameadult style color: #FFFFFF;background-color:#463626; font-size:11px; border: 0px #000000; width:45px; height:18px> option value1 >1/option> option value2 >2/option> option value3 >3/option> option value4 >4/option> option value5 >5/option> option value6 >6/option> option value7 >7/option> option value8 >8/option> option value9 >9/option> option value10 >10/option> option value11 >11/option> option value12 >12/option> option value13 >13/option> option value14 >14/option> option value15 >15/option> option value16 >16/option> option value17 >17/option> option value18 >18/option> option value19 >19/option> option value20 >20/option> /select>/td> td>select namechild style color: #FFFFFF;background-color:#463626; font-size:11px; border: 0px #000000; width:45px; height:18px> option value0 >0/option> option value1 >1/option> option value2 >2/option> option value3 >3/option> option value4 >4/option> option value5 >5/option> option value6 >6/option> option value7 >7/option> option value8 >8/option> option value9 >9/option> option value10 >10/option> option value11 >11/option> option value12 >12/option> option value13 >13/option> option value14 >14/option> option value15 >15/option> option value16 >16/option> option value17 >17/option> option value18 >18/option> option value19 >19/option> option value20 >20/option> /select>/td> /tr> /table>/td> /tr> tr> td stylepadding-top:10px>table width100% cellspacing0 cellpadding0> tr> td width25>input typecheckbox nameextra_bed valuecheckbox />/td> td classcheckin>Extra bed /td> td>div alignright>input nameimage typeimage stylewidth:82px; height:22px; value srcimages/btreser.gif />/div>/td> /tr> /table>/td> /tr> /table>/td> /tr> /table> /form> br /> table width85% aligncenter cellpadding0 cellspacing0> tr> td>!-- InstanceBeginEditable nameEditRegion5 --> !-- #BeginLibraryItem /Library/newsletter.lbi --> table width100% aligncenter cellpadding0 cellspacing0> tr> td>h3>Exclusive Email Offer /h3>/td> /tr> tr> td classcheckin>Sign up to receive special promotions available only to those on our email list/td> /tr> tr> td>form idform2 nameform2 methodpost actionmail_send2.php> table width100% cellspacing0 cellpadding0> tr> td>input namenewsletter typetext idnewsletter style font-size:11px;color: #FFFFFF; background-image: url(images/bgform.gif); border: 0px #000000; width:145px; height:16px value Email address... />/td> td width82>a href#> input nameSubmit typesubmit stylecolor: #FFFFFF; border:0px; background-image:url(images/btsubscriber.gif); width:82px; height:22px value /> /a>/td> /tr> /table> /form>/td> /tr> /table> !-- #EndLibraryItem -->!-- InstanceEndEditable -->/td> /tr> /table>/td> td valigntop>!-- InstanceBeginEditable nameEditRegion4 --> table width100% cellspacing0 cellpadding0> tr> td width437>table width100% cellspacing0 cellpadding0> tr> td height99 backgroundimages/bg-header.gif stylepadding-left:25px; padding-right:25px>h1>Supsangdao Resort, Krabi br /> span classstyle1>Modern style resort on Ao Nang Bay , Krabi. It is located near Ao Nang Beach and Nopparatthara Beach/span>/h1>/td> /tr> tr> td valigntop bgcolor#FFFFFF stylepadding:25px 25px 25px 25px>p>strong>Sub Sang Dao Resort is located in Ao Nang close to Ao Nang beach and Nopharat Thara beach where the most tourist attraction./strong> The resort is Villa style with full furnished the most comfortable for our guests. There are only 9 Villas in the resort which cause the clients to feel more privacy and not to0 much crown./p> p> /p> p>Sub Sang Dao Resort is only 1 kilometer away from Nopharat Thara and Ao Nang beach but do not worry to get to those beaches, the resort has shuttle bus service, transfer from resort to the beaches at 09:00 am and pick up from the beach to the resort at 18:00 pm. Or if you would like to rent a motor cycle, car or taxi service, the resort also has these kinds of service./p> p> /p> p> /p> p> /p>/td> /tr> /table>/td> td valigntop bgcolor#FFFFFF>table width100% cellspacing0 cellpadding0> tr> td width226 valigntop>table width100% cellspacing0 cellpadding0> tr> td>img srcimages/top-special.gif width226 height14 />/td> /tr> tr> td>a hrefsupsangdoa-resort-room-rate.html>img srcimages/specialoffer.jpg width226 height161 border0 />/a>/td> /tr> tr> td>img srcimages/specialoffer2.jpg width226 height161 />/td> /tr> /table>/td> td classbgtop> /td> /tr> /table>/td> /tr> /table> !-- InstanceEndEditable -->/td> /tr> /table>/td> /tr> /table>/td> td width10 backgroundimages/borderright.gif> /td> /tr>/table>table width980 aligncenter cellpadding0 cellspacing0> tr> td> /td> /tr> tr> td>div aligncenter classfootter>Supsangdao Resort 133 M.5 T.Ao nang Muang Krabi, Thailandbr /> Tel. +66 (0) 75-661-601-2 Fax. +66 (0) 75-661-601 Mobile. +66 (0) 81-956-0673, +66 (0) 84-682-6832 | supsangdaoresort@yahoo.combr /> Copyright © 2009 Supsangdoa Resort. All Rights Reserved.!-- | Design by a hrefhttp://www.thegiza.com target_blank classfooterlink>The Giza /a>-->br /> br /> /div>/td> /tr>/table>/body>!-- InstanceEnd -->/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]