function checkShippingPromotion()
{

	if(shopping_basket.sub_total >= 1)
		return document.write("<table border='0'><tr><td align='right'><img src='assets/images/ok.gif' width='20' height='20'></td><td><b>You are getting Free UPS 2nd Day Air Shipping with this purchase</b></td></tr></table>");


/*	var is_basket_less_than_100 = shopping_basket.sub_total < 10000 ? true : false;

	if(is_basket_less_than_100)
	{
		var i = 10000 - shopping_basket.sub_total;
		return document.write("<table border='0'><tr><td align='right'><img src='assets/images/attention.png' width='30' height='30'></td><td><b>Buy for $"+ OKStrOfPenny(i) + " more and get FREE 2nd Day Air shipping.<br>You can <a href='search.asp' onClick='return(visitargs('search.asp','','URL'));'>Search By Price</a> or <a href='javascript:history.go(-1)'>Continue Shopping</a></b></td></tr></table>");
	}
	else
	{
		if(basket_items == 1)
			return document.write("<table border='0'><tr><td align='right'><img src='assets/images/ok.gif' width='20' height='20'></td><td><b>You'll get free shipping with this purchase</b></td></tr></table>");
		if(basket_items > 1)
			return document.write("<table border='0'><tr><td align='right'><img src='assets/images/ok.gif' width='20' height='20'></td><td><b>You'll get free shipping with these purchases</b></td></tr></table>");
	}
*/
}
function checkSurferPearlsPromotion()
{

	var is_basket_less_than_200 = shopping_basket.sub_total < 20000 ? true : false;

	if(is_basket_less_than_200)
	{
		var i = 20000 - shopping_basket.sub_total;
		return document.write("<table border='0'><tr><td align='right'><img src='assets/images/attention.png' width='30' height='30'></td><td><b>Buy for $"+ OKStrOfPenny(i) + " more to qualify for a FREE Freshwater Surfer-Pearl necklace worth of $39.95. <a href='text_1.asp?tx_id=78&amp;' style='color: rgb(0, 0, 255); font-weight: bold;' onclick='return(visitargs('text_1.asp','tx_id=78&','URL'));'>Click for details</a></b></td></tr></table>");
	}
	else
	{
		if(basket_items == 1)
			return document.write("<table border='0'><tr><td align='right'><img src='assets/images/ok.gif' width='20' height='20'></td><td><b>Your qualified to receive a Free Freshwater Surfer-Pearl necklace worth of $39.95.<br>Enter promotion code: 'tan' for a Tan Leather Cord or enter promotion code 'black' for a Black Leather Cord. <a href='text_1.asp?tx_id=78&amp;' style='color: rgb(0, 0, 255); font-weight: bold;' onclick='return(visitargs('text_1.asp','tx_id=78&','URL'));'>Click for details</a></b></td></tr></table>");
		if(basket_items > 1)
			return document.write("<table border='0'><tr><td align='right'><img src='assets/images/ok.gif' width='20' height='20'></td><td><b>Your qualified to receive a Free Freshwater Surfer-Pearl necklace worth of $39.95<br>Enter promotion code: 'tan' for a Tan Leather Cord or enter promotion code 'black' for a Black Leather Cord. <a href='text_1.asp?tx_id=78&amp;' style='color: rgb(0, 0, 255); font-weight: bold;' onclick='return(visitargs('text_1.asp','tx_id=78&','URL'));'>Click for details</a></b></td></tr></table>");
	}
}
function isDiscountCodeSet()
{
		if(shopping_basket.discount_code.toLowerCase() == "black" && shopping_basket.sub_total >= 20000)
			return document.write("<table border='0'><tr><td align='right'><img src='assets/images/ok.gif' width='20' height='20'></td><td><b>You will receive a Free Freshwater Surfer-Pearl Necklace with Black Leather of $39.95.</b></td></tr></table>");
		
		if(shopping_basket.discount_code.toLowerCase() == "tan" && shopping_basket.sub_total >= 20000)
			return document.write("<table border='0'><tr><td align='right'><img src='assets/images/ok.gif' width='20' height='20'></td><td><b>You will receive a Free Freshwater Surfer-Pearl Necklace with Tan Leather of $39.95.</b></td></tr></table>");
		
		if(shopping_basket.discount_code.toLowerCase() == "black" || shopping_basket.discount_code.toLowerCase() == "tan" && shopping_basket.sub_total < 20000)
			return document.write("<table border='0'><tr><td align='right'><img src='assets/images/attention.png' width='20' height='20'></td><td><b>We're sorry, you are not qualified to receive the Free Freshwater Surfer-Pearl necklace worth of $39.95. You have to purchase for $200 or more to be qualified. <a href='text_1.asp?tx_id=78&amp;' style='color: rgb(0, 0, 255); font-weight: bold;' onclick='return(visitargs('text_1.asp','tx_id=78&','URL'));'>Click for details</a></b></td></tr></table>");
		
		if(shopping_basket.discount_code.toLowerCase() == "" && shopping_basket.sub_total >= 20000)
			return document.write("<table border='0'><tr><td align='right'><img src='assets/images/attention.png' width='20' height='20'></td><td><b>You are qualified to receive a Free Freshwater Surfer-Pearl Necklace worth of $39.95. But you need to go back and enter the promotion codes 'tan' or 'black' at the cart. <a href='text_1.asp?tx_id=78&amp;' style='color: rgb(0, 0, 255); font-weight: bold;' onclick='return(visitargs('text_1.asp','tx_id=78&','URL'));'>Click for details</a></b></td></tr></table>");
}

/* Javascript Popup Guide start */

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=311,height=261,left = 484.5,top = 269.5');");
}

function popUpShipping(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=1,menubar=0,resizable=0,width=311,height=261,left = 484.5,top = 269.5');");
}

