A lonely bard wandering across the lands am I
Singing dancing finding answers to every why
The taverns are full and one crosses my path, too
I just might reward myself with a beer or two
This inn the place of many romantic tales
On the loft women offer their sales
But my eyes they catch a girl beat by everyone
A slave she is but for me a rose undone
Hear me sing
Watch me dance
Play that lute of thine
And share with me this dance
As she danced my eyes began to shine
There she was the maiden so divine
How could I approach her with my outlook so poor
Her beauty being much more than I could endure
So I asked if I could sing a chanson
With a language of ancient and of lore
Gathered the men around us me and the girl in rags
Soon were the melodies heard by everyone
Hear us sing
Watch us dance
Sing with us this tale
With a clap of hands
The stories long-forgotten we still know
Performing our skills wherever we go
I end my story as I receive a kissv
From my girl the dearest Beatrice
Hear us sing
Watch us dance
Sing with us the tales
Which the music will keep alive
Publikováno: Wednesday, 01.10. 2008 - 10:14:23 Od: a
Přihlásit se
Ještě nemáte svůj účet? Můžete si jej vytvořit zde. Jako registrovaný uživatel získáte řadu výhod. Budete moct upravit vzhled tohoto webu, nastavit zobrazení komentářů, posílat komentáře, posílat zprávy ostatním uživatelům a řadu dalších.
UK is Coach Outlet Online [www.coachoutletstoreinoa.com]the short form of the United Kingdom Coach Factory Outlet [www.coachfactoryoutletmsna.com]of Great Britain and Northern Ireland, Coach Outlet [www.coachoutletonlinemu.com]or commonly known as Britain. UK Coach Outlet Online [www.coachoutletstoreinoa.com]is composed of four parts. They are: Coach Outlet Store [www.coachfactoryoutletmona.com]England, Scotland, Welsh and Northern Coach Outlet Store Online [www.coachfactoryoutletsnai.com]Ireland. London is the capital of Coach Outlet [www.coachoutletonlinemu.com]UK. UK is a constitutional monarchy, Coach Factory Online [www.coachfactoryoutletnos.net]and the head of state is a king Coach Factory Outlet [www.coachfactoryoutletmsna.com]or a queen. The United Kingdom is Coach Outlet [www.coachoutletonlinemu.com]governed, in the name of the Sovereign Coach Factory Outlet [www.coachfactoryoutletmsna.com]by His or Her Majesty's Government.Beijing Coach Outlet [www.coachoutletonlinemu.com]citizen Zou Yi's 365 days of photos Coach Outlet Store [www.coachfactoryoutletmona.com]of the Beijing TV building have stunned Coach Outlet Store Online [www.coachfactoryoutletsnai.com]many, showing with crystal clarity how Coach Outlet Online [www.coachoutletstoreinoa.com]smog overshadows the city more than hal True Religion Jeans [www.truereligionjeansftc.com]there are still many people can not True Religion Outlet [www.truereligionjeansct.com]distinguish the relationships between True Religion [www.truereligionjeanssi.com]England, Britain and United Kingdom. Michael Kors Outlet Online [www.michaelkorsoutletic.com]f of the year."There were a few really Michael Handbags Outlet [www.michaelkorsets.com]smoggy days before the 26th of January Michael Kors Outlet Store Online [www.michaelkorsoutletnio.com]last year. I looked outside the Michael Kors Outlet Stores [www.michaelkorsetoutletbeo.com]window and saw the Beijing TV building Chanel Outlet Online [www.chaneloutletmobai.com]in the smog, I took my first photo Louis Vuitton Outlet [www.louisvuittonoutletina.com]of it. I kept taking photos of it Louis Vuitton Handbags [www.louisvuittonoutletine.com]for about
<%
' ********************************************************************
' Paste this block of code on your web page where you would like text
' links to be displayed. This code will dynamically add and remove text
' links on your web page according to your BackLinks.com settings.
' ********************************************************************
Dim BLKey
Dim OpenInNewWindow
Dim PostingString
Dim ErrorString
Dim ResultString
Dim LinkUrl
' The following variable defines whether links are opened in a new window
' (1 = Yes, 0 = No)
OpenInNewWindow = 1
' *******************************************************************
' please do not modify any of the code below
' *******************************************************************
BLKey = "IN7K-P7DV-97PB"
' # The following variable is sent to the BackLinks server in order to
' # generate working links on your page:
If Request.ServerVariables("HTTPS") = "on" Then LinkUrl="https://" Else LinkUrl="http://" End If
If Request.ServerVariables("REQUEST_URI") Then
LinkUrl = LinkUrl & Request.ServerVariables("HTTP_HOST") & Request.ServerVariables("REQUEST_URI")
Else
LinkUrl = LinkUrl & Request.ServerVariables("HTTP_HOST") & Request.ServerVariables("PATH_INFO")
If Request.ServerVariables("QUERY_STRING") <> "" Then LinkUrl = LinkUrl & "?" & Request.ServerVariables("QUERY_STRING") End If
End If
LinkUrl = server.URLencode(LinkUrl)
' # Generate the data to post to the BackLinks.com server
PostingString = "&Key=" & BLKey
PostingString = PostingString & "&OpenInNewWindow=" & OpenInNewWindow & "&LinkUrl=" & LinkUrl
Function GetBackLinksData(HTTPQuery, ByRef Resp, ByRef Er)
Dim HttpReqObj
Set HttpReqObj = Nothing
On Error Resume Next
Set HttpReqObj = CreateObject("WinHttp.WinHttpRequest.5.1")
On Error Resume Next
If HttpReqObj Is Nothing Then Set HttpReqObj = CreateObject("WinHttp.WinHttpRequest.5") End If
On Error Resume Next
If HttpReqObj Is Nothing Then
On Error Resume Next
Set HttpReqObj = CreateObject("Msxml2.ServerXMLHTTP")
On Error Resume Next
If HttpReqObj Is Nothing Then
Set HttpReqObj = CreateObject("Msxml2.ServerXMLHTTP.4.0")
End If
On Error Resume Next
If HttpReqObj Is Nothing Then
Set HttpReqObj = CreateObject("Microsoft.XMLHTTP")
End If
On Error Resume Next
If HttpReqObj Is Nothing Then
Er = "HTTP requests not supported."
GetBackLinksData = False
Else
HttpReqObj.open "GET", "http://www.backlinks.com/engine.php?" & HTTPQuery, false
HttpReqObj.Send
If HttpReqObj.status <> 200 Then
Er = "Error: Status=" & HttpReqObj.status & " Text='" & HttpReqObj.responseText & "'"
GetBackLinksData = False
Else
Resp = HttpReqObj.responseText
GetBackLinksData = True
End If
Set HttpReqObj = Nothing
End If
Else
HttpReqObj.Open "GET", "http://www.backlinks.com/engine.php?" & HTTPQuery, False
HttpReqObj.Send
If HttpReqObj.Status <> 200 Then
Er = "Error: Status=" & HttpReqObj.Status & " Text=" & HttpReqObj.ResponseText
GetBackLinksData = False
Else
Resp = HttpReqObj.responseText
GetBackLinksData = True
End If
End If
End Function
If GetBackLinksData(PostingString, ResultString, ErrorString) Then
Response.Write ResultString
Else
Response.Write ErrorString
End If
' FINSIHED BackLinks.COM SCRIPT BLOCK
%>