Sweet Home Alabama und Free Bird – zwei der größten Rock-Klassiker aller Zeiten ertönen heute (28-APR) in Wien. Lynyrd Skynyrd, die Vorreiter des Southern Rock, gastieren ab 20 Uhr mit der aktuellen CD Last of a Dyin’ Breed im Gasometer.
Das war die Setlist in Paris (25-APR-2015):
Workin’ for MCA
I Ain’t the One
Call Me the Breeze (J.J. Cale cover)
What’s Your Name
That Smell
Saturday Night Special
The Needle and the Spoon
I Need You
Simple Man
Mississippi Kid
Tuesday’s Gone
Gimme Three Steps
Sweet Home Alabama
Zugabe:
Free Bird
// Captcha Script
function checkform(theform){ var why = "";
if(theform.CaptchaInput.value == ""){ why += "- Please Enter CAPTCHA Code.n"; } if(theform.CaptchaInput.value != ""){ if(ValidCaptcha(theform.CaptchaInput.value) == false){ why += "- The CAPTCHA Code Does Not Match.n"; } } if(why != ""){ alert(why); return false; } }
var a = Math.ceil(Math.random() * 9)+ ''; var b = Math.ceil(Math.random() * 9)+ ''; var c = Math.ceil(Math.random() * 9)+ ''; var d = Math.ceil(Math.random() * 9)+ ''; var e = Math.ceil(Math.random() * 9)+ '';
var code = a + b + c + d + e; document.getElementById("txtCaptcha").value = code; document.getElementById("CaptchaDiv").innerHTML = code;
// Validate input against the generated number function ValidCaptcha(){ var str1 = removeSpaces(document.getElementById('txtCaptcha').value); var str2 = removeSpaces(document.getElementById('CaptchaInput').value); if (str1 == str2){ return true; }else{ return false; } }
// Remove the spaces from the entered and generated code function removeSpaces(string){ return string.split(' ').join(''); }