<% 'if UCase(request.ServerVariables("SERVER_NAME")) = "BATMAN" OR UCase(request.ServerVariables("SERVER_NAME")) = "DEMO.ONTHEWEB.CO.ZA" OR UCase(request.ServerVariables("SERVER_NAME")) = "DEMO.ONLINEINNOVATIONS.CO.ZA" OR UCase(request.ServerVariables("SERVER_NAME")) = "DEMO.ONLINEINNOVATIONS.COM" then 'else ' if request.ServerVariables("HTTPS") = "off" then ' ' ' For each Field in Request.Form ' TheString = TheString & Field & "="&Request.Form(Field)&"&" ' Next ' if len(TheString) > 0 then ' TheForm = Left(TheString, len(TheString)-1) ' end if ' ' TheString = "" ' For each Field in Request.Querystring ' TheString= TheString & Field & "="& Request.Querystring(Field) &"&" ' Next ' if len(TheString) > 0 then ' TheQuerystring =TheString ' end if ' ' if TheForm = empty and TheQuerystring = empty then ' strVars = "" ' elseif TheForm <> empty and TheQuerystring = empty then ' strVars = "?"&TheForm ' elseif TheForm = empty and TheQuerystring <> empty then ' strVars = "?"&TheQuerystring ' elseif TheForm <> empty and TheQuerystring <> empty then ' strVars = "?"&TheForm &"&"&TheQuerystring ' end if ' ' response.Redirect("https://www.justreservations.com"&strVars) ' response.end ' end if 'end if i_AffiliateCookieID = Request.Cookies("JustReservations")("AffiliateCookieID") 'Get a session value is availible if we have a value the user has already been tracked i_AffiliateSessionID =session("AffiliateID") 'Only track information if the Affiliate session value does not exist i.o.w. this session has not been captured if i_AffiliateSessionID = empty OR NOT IsNumeric(i_AffiliateSessionID) OR ISNULL(i_AffiliateSessionID) then 'First lets check if the users has an Affiliate stored as a cookie on his/her machine if i_AffiliateCookieID = empty OR NOT IsNumeric(i_AffiliateCookieID) OR ISNULL(i_AffiliateCookieID) then 'No coockie set, so now we check if the user came from an affiliate site... i_AffiliateRequestID = request("AffiliateID") 'If the user has come from an Affiliate site we store the AffiliateID for future reference if i_AffiliateRequestID <> empty AND IsNumeric(i_AffiliateRequestID) AND NOT ISNULL(i_AffiliateRequestID) then Response.Cookies("JustReservations")("AffiliateCookieID") = i_AffiliateRequestID Response.Cookies("JustReservations")("AffiliateReferer") = request.ServerVariables("HTTP_REFERER") Response.Cookies("JustReservations").Expires = DateAdd("M", 12, Date()) 'Capure Vistor info s_AffiliateReferer="" TrackInfo i_AffiliateRequestID,s_AffiliateReferer session("AffiliateID") = i_AffiliateRequestID else 'The user did not come from an Affiliate so se t session = 1 session("AffiliateID") = 1 end if else 'If the User has an AffiliateCooksie set we need to check if the user came from a different affiliate this 'time round and update the cookie accordingly' i_AffiliateRequestID = request("AffiliateID") if i_AffiliateRequestID <> empty AND IsNumeric(i_AffiliateRequestID) AND NOT ISNULL(i_AffiliateRequestID) then Response.Cookies("JustReservations")("AffiliateCookieID") = i_AffiliateRequestID Response.Cookies("JustReservations").Expires = DateAdd("M", 12, Date()) s_AffiliateReferer = "" TrackInfo i_AffiliateRequestID,s_AffiliateReferer session("AffiliateID") = i_AffiliateRequestID else 'The user did not come from a different Affiliate so set session to the stored cookie value and track the user again s_AffiliateReferer = Request.Cookies("JustReservations")("AffiliateReferer") TrackInfo i_AffiliateCookieID,s_AffiliateReferer session("AffiliateID") = i_AffiliateCookieID end if end if end if Function TrackInfo(AffiliateID,AffiliateReferer) set con = server.createobject("ADODB.Connection") con.open Application("CString") set rsAffiliateData = server.createobject("ADODB.Recordset") rsAffiliateData.open "SELECT * FROM SiteTrack Where 1=2", con, 1, 3 rsAffiliateData.AddNew() rsAffiliateData("TDate") = Now() rsAffiliateData("AffiliateID") = AffiliateID rsAffiliateData("ALL_HTTP") = request.ServerVariables("ALL_HTTP") rsAffiliateData("ALL_RAW") = request.ServerVariables("ALL_RAW") rsAffiliateData("APPL_MD_PATH") = request.ServerVariables("APPL_MD_PATH") rsAffiliateData("APPL_PHYSICAL_PATH") = request.ServerVariables("APPL_PHYSICAL_PATH") rsAffiliateData("CONTENT_LENGTH") = request.ServerVariables("CONTENT_LENGTH") rsAffiliateData("CONTENT_TYPE") = request.ServerVariables("CONTENT_TYPE") rsAffiliateData("GATEWAY_INTERFACE") = request.ServerVariables("GATEWAY_INTERFACE") rsAffiliateData("HTTP_ACCEPT") = request.ServerVariables("HTTP_ACCEPT") rsAffiliateData("HTTP_ACCEPT_ENCODING") = request.ServerVariables("HTTP_ACCEPT_ENCODING") rsAffiliateData("HTTP_ACCEPT_LANGUAGE") = request.ServerVariables("HTTP_ACCEPT_LANGUAGE") rsAffiliateData("HTTP_CONNECTION") = request.ServerVariables("HTTP_CONNECTION") rsAffiliateData("HTTP_COOKIE") = request.ServerVariables("HTTP_COOKIE") rsAffiliateData("HTTP_HOST") = request.ServerVariables("HTTP_HOST") if AffiliateReferer <> empty AND NOT ISNULL(AffiliateReferer) then rsAffiliateData("HTTP_REFERER") = AffiliateReferer else rsAffiliateData("HTTP_REFERER") = request.ServerVariables("HTTP_REFERER") Response.Cookies("JustReservations")("AffiliateReferer") = request.ServerVariables("HTTP_REFERER") end if rsAffiliateData("HTTP_USER_AGENT") = request.ServerVariables("HTTP_USER_AGENT") rsAffiliateData("HTTP_UA_PIXELS") = request.ServerVariables("HTTP_UA_PIXELS") rsAffiliateData("HTTP_UA_COLOR") = request.ServerVariables("HTTP_UA_COLOR") rsAffiliateData("HTTP_UA_OS") = request.ServerVariables("HTTP_UA_OS") rsAffiliateData("HTTP_UA_CPU") = request.ServerVariables("HTTP_UA_CPU") rsAffiliateData("HTTPS") = request.ServerVariables("HTTPS") rsAffiliateData("HTTPS_KEYSIZE") = request.ServerVariables("HTTPS_KEYSIZE") rsAffiliateData("HTTPS_SECRETKEYSIZE") = request.ServerVariables("HTTPS_SECRETKEYSIZE") rsAffiliateData("HTTPS_SERVER_ISSUER") = request.ServerVariables("HTTPS_SERVER_ISSUER") rsAffiliateData("HTTPS_SERVER_SUBJECT") = request.ServerVariables("HTTPS_SERVER_SUBJECT") rsAffiliateData("INSTANCE_ID") = request.ServerVariables("INSTANCE_ID") rsAffiliateData("INSTANCE_META_PATH") = request.ServerVariables("INSTANCE_META_PATH") rsAffiliateData("LOCAL_ADDR") = request.ServerVariables("LOCAL_ADDR") rsAffiliateData("LOGON_USER") = request.ServerVariables("LOGON_USER") rsAffiliateData("PATH_INFO") = request.ServerVariables("PATH_INFO") rsAffiliateData("PATH_TRANSLATED") = request.ServerVariables("PATH_TRANSLATED") rsAffiliateData("QUERY_STRING") = request.ServerVariables("QUERY_STRING") rsAffiliateData("REMOTE_ADDR") = request.ServerVariables("REMOTE_ADDR") rsAffiliateData("REMOTE_HOST") = request.ServerVariables("REMOTE_HOST") rsAffiliateData("REMOTE_USER") = request.ServerVariables("REMOTE_USER") rsAffiliateData("REQUEST_METHOD") = request.ServerVariables("REQUEST_METHOD") rsAffiliateData("SCRIPT_NAME") = request.ServerVariables("SCRIPT_NAME") rsAffiliateData("SERVER_NAME") = request.ServerVariables("SERVER_NAME") rsAffiliateData("SERVER_PORT") = request.ServerVariables("SERVER_PORT") rsAffiliateData("SERVER_PORT_SECURE") = request.ServerVariables("SERVER_PORT_SECURE") rsAffiliateData("SERVER_PROTOCOL") = request.ServerVariables("SERVER_PROTOCOL") rsAffiliateData("SERVER_SOFTWARE") = request.ServerVariables("SERVER_SOFTWARE") rsAffiliateData("URL") = request.ServerVariables("URL") rsAffiliateData.Update() session("TLogID") =rsAffiliateData("LogID") End Function if i_AffiliateID <> empty and IsNumeric(i_AffiliateID) then end if %> <% Server.ScriptTimeout = 10000 Response.Buffer = true Set con = Server.CreateObject("ADODB.Connection") con.Open Application("CString") Set UploadProgress = Server.CreateObject("Persits.UploadProgress") PID = "PID=" & UploadProgress.CreateProgressID() barref = "UploadMonitor/FRAMEBAR.ASP?to=10&"& PID set browObj = Server.CreateObject("cyScape.browserObj") browObj.SetExtProperties "cookie_both" browObj.GetExtPropertiesEx if browObj.cookiesEnabled = "False" then %> <% response.end end if if browObj.Browser = "IE" then browser_IE = true browsertype = "IE" else browser_IE = false end if %> Hotels in Ireland - Book Ireland Hotels with Just Reservations
Hotels Ireland
Home   |   Contact us About us Find a Hotel Car Rental Site Map
<% If InStr(LCase(Request.ServerVariables("HTTP_USER_AGENT")), "netscape") > 0 Then strCusorType = "pointer" Else strCusorType = "hand" End If strSQL = "SELECT MenuID AS 'MainID', MenuName AS 'Main', "&_ "PageID AS 'MainPageID', Frame AS 'MainFrame', "&_ "MenuOrder AS 'MainOrder', 0 AS 'SubID', "&_ "'' AS 'Sub', NULL AS 'SubPageID', "&_ "'' AS 'SubFrame', 0 AS 'SubOrder' "&_ "FROM CMS_Menu "&_ "WHERE MenuSectionID = 1 AND "&_ "MainMenuID IS NULL AND "&_ "PageID IS NOT NULL "&_ "UNION "&_ "SELECT main.MenuID AS 'MainID', main.MenuName AS 'Main', "&_ "NULL AS 'MainPageID', '' AS 'MainFrame', "&_ "main.MenuOrder AS 'MainOrder', sub.MenuID AS 'SubID', "&_ "sub.MenuName AS 'Sub', sub.PageID AS 'SubPageID', "&_ "sub.Frame AS 'SubFrame', sub.MenuOrder AS 'SubOrder' "&_ "FROM CMS_Menu main, CMS_Menu sub "&_ "WHERE main.MenuSectionID = 1 AND "&_ "main.MenuID = sub.MainMenuID AND "&_ "sub.PageID IS NOT NULL "&_ "ORDER BY MainOrder, SubOrder" Set rsMenu = Server.CreateObject("ADODB.Recordset") rsMenu.Open strSQL, Application("CString"), 3, 1 if not rsMenu.EOF then strHideAllLayers = "" do while not rsMenu.EOF i_MainID = rsMenu("MainID") i_MainPageID = rsMenu("MainPageID") if IsNull(i_MainPageID) then strHideAllLayers = strHideAllLayers &"'Option_"& i_MainID &"','','hide'," end if rsMenu.MoveNext() loop if Len(strHideAllLayers) > 0 then strHideAllLayers = Left(strHideAllLayers, Len(strHideAllLayers) - 1) end if rsMenu.MoveFirst() %> <% i_Counter = 0 do while not rsMenu.EOF i_MainID = rsMenu("MainID") s_Main = rsMenu("Main") i_MainPageID = rsMenu("MainPageID") s_MainFrame = rsMenu("MainFrame") i_MainOrder = rsMenu("MainOrder") if Not IsNull(i_MainPageID) then if s_MainFrame = "_self" then s_MainFrame = "_top" end if %> <% rsMenu.MoveNext() else i_PX = 0+ (23 * i_Counter) %> <% end if i_Counter = i_Counter + 1 loop %>
<% end if rsMenu.Close() set rsMenu = Nothing %>


 Dublin Hotels
 Cork Hotels
 Galway Hotels
 Wicklow Hotels
 Kerry Hotels
 Ireland Hotels
Welcome to Just Reservations

Welcome to Justreservations.com- Ireland's leading online hotel reservations service. Our aim is to make your online booking experience as hassle free and painless as possible. We also guarantee you access to great quality hotels at the best value available.

We've been in the hotel business a long time, 25 years to be exact. So if you're thinking of visiting Ireland and want to know that you're dealing with a credible company that knows "what's what" when it comes to booking hotels then look no further - justreservations.com is the site for you.

Find me the best stay at the lowest rate
<% if request("errNoRates") = "True" then %>

There are no rooms available for <%=request("CityTown")%> for the dates and room selection(s) that you have requested.

<% end if %>

Select Destination:

 

Enter arrival date:

<% if request("SelectdateStart") <> empty then strDate = request("SelectdateStart") else strDate = Date() end if %> "> " size="10" <% if browser_IE then response.Write(" readonly")%> style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; height: 22px; width: 100px;" onClick="popFrame1.fPopCalendar(dateStart,dateStart,popCal1);return false"> <% if browser_IE then %> <% else%> mm/dd/yyyy <% end if%>  

Enter departure date:

<% if s_Action = "update" then strDate = s_Update_SeasonTo else if request("SelectdateEnd") <> empty then strDate = request("SelectdateEnd") else strDate = Date() end if end if %> " <% if browser_IE then response.Write(" readonly")%> style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; height: 22px; width: 100px;" onClick="popFrame2.fPopCalendar(dateEnd,dateEnd,popCal2);return false"> <% if browser_IE then %> <% else%> mm/dd/yyyy <% end if%>  

Number of adults:

 
     
   
<% if Request("CityTown") <> empty and request("Guests") <> empty and request("SelectdateStart") <> empty and request("SelectdateEnd") <> empty then %> <% end if %>
  <% Function RandomImage(ImagesFolderPath, ImageFileTypes, ImageDescription) 'Declare variables Dim CompleteImagesFolderPath Dim FileSystemObject Dim ImageFolder Dim Files Dim i Dim ImageFiles Dim File Dim FileName Dim FileExtension Dim RandomNumber 'Find the complete path to image folder by using Server.MapPath CompleteImagesFolderPath = Server.MapPath(ImagesFolderPath) 'Create an instance of the FileSystemObject which allows ASP to 'access the file system Set FileSystemObject = Server.CreateObject("Scripting.FileSystemObject") DeleteFilePath = Server.MapPath("Images/randomRight/Thumbs.db") if FileSystemObject.FileExists(DeleteFilePath) then FileVar = "Yes" FileSystemObject.DeleteFile DeleteFilePath else FileVar = "No" end if 'Check that the folder containing the images exists If Not FileSystemObject.FolderExists(CompleteImagesFolderPath) Then RandomImage = "Error 0: Cannot find requested folder" Set FileSystemObject = nothing Exit Function End If 'Get the folder containing the images Set ImageFolder = FileSystemObject.GetFolder(CompleteImagesFolderPath) 'Get a list of all the files within the images folder Set Files = ImageFolder.Files 'Use a dictionary object to temporarily store the image file names i = 1 Set ImageFiles = Server.CreateObject("Scripting.Dictionary") 'Loop through the list of files within the images folder. 'If the file has a file extension that is in the list of 'file types specified in the ImageFileTypes function parameter, 'then add the file name to the ImageFiles dictionary object For Each File in Files FileName = File.Name 'FileExtension = Right(FileName, Len(FileName) - (InStrRev(FileName, "."))) FileExtension = "jpg" 'response.Write("
FileExtension : "&FileExtension) If InStr(1,ImageFileTypes,FileExtension,vbTextCompare) > 0 then ImageFiles.Add i, FileName i = i + 1 End If Next 'Destroy objects that are no longer required Set ImageFolder = nothing Set Files = nothing Set FileSystemObject = nothing 'Initialise the random number generator Randomize ' Check that image file(s) have been found If ImageFiles.Count = 0 Then RandomImage = "Error 1: Requested folder does not contain any image files" Exit Function End If 'Generate a random number between 1 and the number of image files RandomNumber = Int((ImageFiles.Count) * Rnd + 1) 'Return a hyperlink to a random image file 'RandomImage = " & Chr(34) & ImageDescription & Chr(34) & " RandomImage = ImagesFolderPath & ImageFiles.Item(RandomNumber) Set ImageFiles = nothing End Function 'Response.Write RandomImage("Images/randomRight/", "gif jpeg jpg", "My Image") %>
">
<%=FileVar%>
   Quick Hotel Search
> Hotels in Dublin
> Hotels in Wicklow
   Upcoming Concerts
> Boyzone RDS Dublin
> Neil Young Dublin Concert
> Counting Crows Dublin
> Nickelback RDS Dublin
> Michael Bolton Vicar Street
> Saw Doctor Dublin Concert
> The Dubliners Concert
   Festivals in Ireland
> Oxegen Festival 2008
   Upcoming Sports
> Croke Park Stadium Fixtures
> Horse Racing Dublin
> Dog Racing Dublin
> Golf Courses Dublin
   Shows in Dublin
> Celtic Nights Show
> Riverdance Gaiety Theatre
conditions of use

- Privacy & Confidentiality
- Terms and Conditions