<%
Option Explicit

Dim bolStyle
Dim intAffid

bolStyle = True
intAffid = ""

If Trim(Len(Request.QueryString("affid"))) > 0 Then
	intAffid = Trim(Request.QueryString("affid"))
Else
	intAffid = ""
End If

If Trim(Request("style")) = "1" Then
	bolStyle = True
Else
	bolStyle = False
End If

%>
var style  = <%If bolStyle Then Response.Write("true") Else Response.Write("false") End If%>
var affid  = <%If intAffid <> "" Then Response.Write("""" & intAffid & """") Else Response.Write("""""") End If%>
var affUrl = (affid == "") ? "http://www.vegasmagic.com/remote/aiddownload.asp" : "http://www.vegasmagic.com/remote/aiddownload.asp?affid=" + affid;

function GetStyles(){
	return '<sty' + 'le type="text/c' + "ss\"><!--\n"
			+ ".header001 {\nfont-family: Arial, Helvetica, sans-serif;\nfont-size: 16px;\ntext-decoration: none;\nfont-weight: bold;\n}"
			+ ".header002 {\nfont-family: verdana, helvetica, sans-serif, arial;\nfont-size: 14px;\nfont-weight: bold;\ntext-decoration: none;\n}"
			+ ".text {\nfont-family: verdana, helvetica, sans-serif, arial;\nfont-size: 12px;\n}"
			+ "--></style>";
}

function GetTextReview(){
	return '<p align="left"><a href="' + affUrl + '" target="_blank"><img src="http://www.vegasmagic.com/images/VMLogo.jpg" width="422" height="50" border="0" alt="Click here to start playing!"></a></p><p align="left" class="header001"><strong>Vegas Magic Casino</strong></p><p align="left"><strong><span class="header002">'
	+ 'Overview:</span></strong><br><span class="text">Vegas Magic offers the most prominent casino games and best online gaming experience on the net. The payouts of all the games are designed to be comparable '
	+ 'to the top casinos in Las Vegas and conform to the strictest Nevada gaming rules. In addition, the software developed by Vegas Magic is the most technologically advanced in the world. Our casino brand is'
	+ ' known everywhere as a reputable and stable casino with fast payouts, great customer service and outstanding promotions.</span></p><p ali'
	+ 'gn="left"><strong><span class="header002">Welcome Bonus:</span></strong><br><span class="text">100% Match Bonus up to $250 - You put in $250 and we\'ll turn it into $500! Redeem coupon code VGJND to get this great bonus.</span></p><p align="left"><strong'
	+ '><span class="header002">Games:</span></strong><br><span class="text">Choose from more than 63 exciting casino games including: <BR>&middot; Multi-Bet Blackjack<br>'
	+ '&middot; Craps<br>&middot; Multi-player Poker (Texas Hold\'Em, Pan, Guts and others!)<br>&middot; Multi-player Bingo<br>&middot; Mega-Jackpot Progressive Slots <br>&middot; More Than 20 Traditional Slots <br>'
	+ '&middot; Progressive Caribbean Stud Poker <br>&middot; American and European Roulette<br>&middot; Keno <br>&middot; War <br>&middot; Red Dog<br>&middot; Baccarat <br>&middot; Video Poker<br>&middot; And many more!<br>'
	+ '</span></p><p align="left"><strong><span class="header002">Table Limits:</span></strong><br><span class="text">'
	+ 'US$ Baccarat (200/2), Multi Hand Blackjack (250/5 per hand up to 2 hands), Craps (500/1), Caribbean Stud Poker (250/5), Let Em Ride Poker (200/2), Slots (2'
	+ '5/0.01),  Tri Card Poker (250/2), Video Poker (100/0.25), War (250/2).<br><br>There are even higher table limits for VIPs!</span></p><p align="left"><strong><span class="header002">Comp Points:</span></st'
	+ 'rong><br><span class="text">All real-money wagers at Vegas Magic earn the player complimentary casino credits at an average rate of 1 point per $10.00 wagered. As you play in the casino, your Comp Points '
	+ 'rate will be increased up to 1 point every dollar you play. You can later cash in your comp points for money and play more in the casino!</span></p><p align="left"><strong><span class="header002">Software:</span></strong><br><span class="text">RealTime Gaming - <a href="http://www.realtimegaming.com" target="_blank">www.realtimegaming.com</a></span></p'
	+ '><p align="left"><strong><span class="header002">Methods of Payment:</span></strong><br><span class="text">Accepted payment methods include NETteller, FirePay, Visa and MasterCard, Electronic Check, InstaD'
	+ 'ebit, and PrePaidATM.</span></p><p align="left"><strong><span class="header002">Customer Service:</span></strong><br><span class="text">Our support staff can assist you in the following languages: Spanish, '
	+ 'French, German, Russian, Portuguese, and Italian.</span></p><blockquote><p align="left" class="text">Toll-Free Number ( North America ): 1-800-480-4429<br>Outside North America : (+506)-257-1626<br>'
	+ 'Email: <a href="mailto:support@vegasmagic.com">support@vegasmagic.com</a><br>Or you can contact your Casino Host directly</p></blockquote><p><span class="text">For any question regarding your withdrawal information, documentation '
	+ 'or certification, contact Player Security Support at <a href="mailto:playersecurity@vegasmagic.com">playersecurity@vegasmagic.com </a>or <a href="mailto:certify@vegasmagic.com">certify@vegasmagic.com</a>.</span></p>'
	+ '<p align="left"><strong><span class="header002">Review:</span></strong><br><span class="text">Download Vegas Magic Casino now! With more than 1.5 million dollars paid out, all the classic games, many new and '
	+ 'exciting games and variations, the best customer service on the net and a completely secure casino account, you can have hours of fun and win hundreds of thousands of dollars.</span></p><p><span class="text">Check our ever-growing progressives, currently ranging from $20,000.00 to $250.000.00! <br></span></p>';
}

function ShowReview(){
	// Style sheet or not?
	var strRes = "";
	strRes = ((style) ? GetStyles() : "") + GetTextReview();
	document.write(strRes);
}

// Show review
ShowReview();