// JavaScript Document

function RollingStoneDetailsWindow() 
{
StonesWindow=window.open('','RollingStoneOffer','height=450,width=450,resizable=yes,top=100,left=100');
	var tmp = StonesWindow.document;
	tmp.write('<html><head><title>Allposters.com</title>');
	tmp.write('</head><body><p style=\"font-family:Verdana;font-size:12px;\"><b>12-Issue Rolling Stone Subscription Bonus</b></p>');
	tmp.write('<p style=\"font-family:Verdana;font-size:12px;\">Your Rolling Stone Authentic cover reprint comes with a 12-issue subscription to Rolling Stone. That\'s a $6.48 value already covered in your purchase price! For new subscribers this means 12 issues to see why Rolling Stone Magazine has been the official Rock and Roll chronicler for over 3 decades.  Limit one per household. Offer will be valid for new Rolling Stone subscribers residing in the US only and cannot be combined with other magazine subscription offers.</p>')
    tmp.write('<p style=\"font-family:Verdana;font-size:12px;\">If at anytime within thirty days of this purchase you want to cancel Rolling Stone and get a rebate for this year\'s subscription allocation, you must print, fill out, and mail in this form with a copy of your Allposters.com receipt to: Rolling Stone Refund, PO Box 8243, Red Oak, IA 51591. The subscription allocation on this purchase is $6.48. Fill out the below if you do NOT want your subscription:</p>')
    tmp.write('Name_________________________________<br>')
    tmp.write('Address_______________________________<br>')
    tmp.write('City, ST, Zip___________________________<br>')
    tmp.write('<p style=\"font-family:Verdana;font-size:12px;\">In order to fulfill your subscription, Allposters.com will transfer your name and address to Rolling Stone. This information will be used by Rolling Stone solely to fulfill your subscription, and Rolling Stone will not share or use this information for any secondary purposes. Any personal information gathered by Rolling Stone in relation to any other Rolling Stone purchase, subscription or transaction will be subject to Rolling Stone\'s privacy policy.</p>');
	tmp.write('</body></html>');
	tmp.close();
}