Seit 2001 tourt Axl Rose mit einer Kabarett-Truppe namens Guns N ‘ Roses. Das Original, noch mit Slash, Duff und Co., gibt’s ab 24-APR auf CD: Live Radio Broadcasts bringt die legendäre GNR-Konzerte aus New York (1988) und Chicago (1992).
Das ist die Tracklist von Live Radio Broadcasts:
CD 1: The Ritz New York 02-FEB-1988
1. Down on the Farm
2. Free Fallin’
3. It’s So Easy
4. Mr Brownstone
5. Out Ta Get Me
6. Sweet Child O’ Mine
7. My Michelle
8. Knockin’ on Heaven’s Door
9. Welcome to the Jungle
10. Night Train
11. Paradise City
12. Mama Kin
13. Rocket Queen
14. Patience
CD 2: Chicago Rosemont Horizon 09-APR-1992
1. Welcome to the Jungle
2. Civil War
3. Night Train
4. Mr Brownstone
5. Live and Let Die
6. It’s So Easy
7. Wild Horses
8. Patience
9. Double Talkin’ Jive
10. November Rain
11. You Could Be Mine
12. The Godfather Theme
13. Welcome to the Jungle (bonus track)
14. Civil War (bonus track)
// 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(''); }