// Build right column
function DrawRightColumn(){
	
	switch(GetPageName()){
		case"":
		case "default.asp":
			DrawBasketBlock();	
		break;
		
		case "shopper_new.asp":
			DrawBasketBlock();	
		break;
		
		case "shopper_lookup.asp":
			DrawBasketBlock();	
		break;
		
		case "shopper_update.asp":
			DrawBasketBlock();	
		break;
		
		case "text_3.asp":
			DrawBasketBlock();	
		break;
		
		case "text_2.asp":
			DrawBasketBlock();	
		break;
		
			case "text_1.asp":
			DrawBasketBlock();	
		break;
		
		
		case "about.asp":
			DrawBasketBlock();
		break;
		
		case "share_new.asp":
			DrawBasketBlock();
		break;
		
		case "product.asp":
			DrawBasketBlock();
			draw_related_product('0','1','You may also be interested in:','0','150','<BR> ','<BR>SALE PRICE ','<BR> Our Price ');
		break;
		
		case "dept.asp":
			draw_specials();
			DrawBasketBlock();
			draw_related('0','1','Related Items','0','150','<BR> ','<BR>SALE PRICE ','<BR> Our Price <BR>');
			draw_related('1','1','Related Accessories','0','150','<BR> ','<BR>SALE PRICE ','<BR> Our Price <BR>');
		break;
		
		default:
			DrawBasketBlock();
			draw_related('0','1','Related Items','0','150','<BR> ','<BR>SALE PRICE ','<BR> Our Price <BR>');
			draw_related('1','1','Related Accessories','0','150','<BR> ','<BR>SALE PRICE ','<BR> Our Price <BR>');
		break;
	
	}
	

} // end function

function GetPageName(){
	var sPath = window.location.pathname;
	//var sPage = sPath.substring(sPath.lastIndexOf('\\') + 1);
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	return(sPage);
}

function DrawLoginBlock(){

	document.write('<div class="Block">');
	
	// If we're logged in...
	if (user_firstname != ""){
		// Show a login link   
		document.write('<div class="Block-Title">Welcome, ' + user_firstname + '!</div>');
		document.write('<div class="Block-Body">');
	
		/* my account */
		document.write("<a href=\"shopper_update.asp\" onclick=\"return(visitargs('shopper_update.asp','','URL'));\">My Account</a>");
		document.write("<br>");
		
		/* my wish list */
		//document.write("<a href=\"wish_basket.asp\" onclick=\"return(visitargs('wish_basket.asp','','URL'));\">My Wish List</a>");
		//document.write("<br>");
		
		/* my orders */
		document.write("<a href=\"receipts.asp\" onclick=\"return(visitargs('receipts.asp','','URL'));\">My Orders</a>");
		document.write("<br>");
		
		/* logout */
		document.write("<a href=\"logout.asp\" onclick=\"return(visitargs('logout.asp','','URL'));\">Logout</a>");
	
		document.write('</div>');
	} // end if

	// End the div
	document.write('</div>');
	
}

function DrawMailingListBlock(){

document.write('<div class="Block">');
	
	document.write('<div class="Block-Title">Mailing List</div>');
	document.write('<div class="Block-Body">');

	document.write('<!-- BeginFeature OneClickEmailOptIn -->');
	document.write('<div class="EmailSignUp">');
	
	document.write("Join our mailing list for specials and discounts!");
		
	// If we're not logged in... (?)
	if (user_email == "") {
		document.write('<form name="surveynew" method="post" action="shopper_new.asp">');
		document.write('<input type="hidden" name="shopper_country" value="USA">');
		document.write('<input type="hidden" name="Validate" value="1">');
	} else {
		var AUTO_email = user_email.substring(0,user_email.lastIndexOf("_"));
		if (AUTO_email=="AUTO"){
			document.write('<form name="surveynew" method="post" action="shopper_new.asp">');
			document.write('<input type="hidden" name="shopper_country" value="USA">');
			document.write('<input type="hidden" name="Validate" value="1">');
		}else{
			document.write('<form name="surveynew" method="post" action="shopper_unsubscribe.asp">');
		}
	}
	document.write('<input type="hidden" name="target" value="text_4.asp">');
	document.write('<input type="hidden" name="s_id" value="1">');
	document.write('<input type="hidden" name="shopper_pref_1" value="YES">');
	
	/* drawinput in uu_shop.js if need to modify 
	* vars in order are:  type,name,value,size (or width) ,target,iclass (set class from style sheet * here),selected) here created style class emlForm MUST BE IN QUOTES */
	document.write('<table border="0"><tr><td>');
	drawinput("text","shopper_email","Enter email",16,1,"form-input","onFocus=\"if (focname == 0) { this.value=''; focname=1; }\" onBlur=\"if (!this.value) { this.value='Enter email'; focname=0; }\"");
	document.write('</td><td>');
	document.write('<input type="image" src="assets/images/btngo.gif" name="email">');
	document.write('</td></tr></table>');
	document.write('</form>');

	// Add a break div so the parent div surrounds all the content
	document.write('<div class="break"></div>');
	
	document.write('</div>');
	
	document.write('<!-- EndFeature OneClickEmailOptIn -->');
	
	document.write('</div>')

document.write('</div>');
}

function DrawBasketBlock(){

	
document.write('<div class="Block">');
	
	//count totals in the cart.
	//added by Luther Brefo 2/21/2008 (My 21st birthday none the less)
	total = 0;
	for (i = 0; i < shopping_basket.items.length; i++){
		total = total + parseInt(shopping_basket.items[i].quantity);
	}
	//end count totals code
	
	document.write('<div class="Block-Title"><a href=\"basket.asp\" onclick=\"return(visitargs(\'basket.asp\',\'\',\'URL\'));\">Shopping Cart (' + total + ')</a></div>');
	document.write('<div class="Block-Body">');

	document.write('<!-- BeginFeature FollowMeBasket -->');
	document.write('<div class="FollowMeBasket">');
	
	// Action links
	
	
	// If there are items in the basket...
	if( shopping_basket.items.length > 0 ){

		// Show items
		for (atn=0; atn < shopping_basket.items.length; atn++){
			document.write("<a href=\"product.asp?s_id=" + i_jscript_uu_sid + "&dept_id=" + shopping_basket.items[atn].dept_id + "&pf_id=" + shopping_basket.items[atn].pf_id + "\" onClick=\"return(visitargs('product.asp','dept_id=" + shopping_basket.items[atn].dept_id + "&pf_id=" + shopping_basket.items[atn].pf_id + "',''))\">");
			document.write('<img src="assets/product_images/' + shopping_basket.items[atn].image + '" width="80" border="0">');
			document.write("</a><br>");
			document.write("<a href=\"product.asp?s_id=" + i_jscript_uu_sid + "&dept_id=" + shopping_basket.items[atn].dept_id + "&pf_id=" + shopping_basket.items[atn].pf_id + "\" onClick=\"return(visitargs('product.asp','dept_id=" + shopping_basket.items[atn].dept_id + "&pf_id=" + shopping_basket.items[atn].pf_id + "',''))\">");
			document.write(shopping_basket.items[atn].name + "</a>");
			document.write("<br/><span class=\"FollowMeBasket-Price\">" + shopping_basket.items[atn].quantity + " @ $"+ OKStrOfPenny(shopping_basket.items[atn].item_price) + " ($" + OKStrOfPenny(shopping_basket.items[atn].item_total) + ")</span>");
			document.write("<br/>");
			document.write("<br/>");
		}
		
		// Show checkout button
		document.write('<div class="FollowMeBasket-CheckoutButton">');
		document.write("<a href=\"basket.asp\" onclick=\"return(visitargs('basket.asp','','SURL'));\"><img src=\"assets/images/checkOUT.gif\" border=0 onMouseOut=\"this.src='assets/images/checkOUT.gif'; return true;\" ></a>");
		
		// Show subtotal
		document.write('<br><span class="FollowMeBasket-Total">$' + OKStrOfPenny(shopping_basket.sub_total) + ' subtotal</span>');		
		document.write('</div>');

	} else {
		
		// Show no items message
		document.write("<a href=\"basket.asp\" onclick=\"return(visitargs('basket.asp','','SURL'));\">My cart</a> is empty.");
		
	}
	
	document.write('</div>');
	document.write('<!-- EndFeature FollowMeBasket -->');

	document.write('</div>');


	document.write('</div>');

}

function DrawWhyShopBlock(){

	
document.write('<div class="Block">');
	

	// Show why shop content
	document.write('<div class="Block-Title">Why shop ...?</div>');
	document.write('<div class="Block-Body">');
	
	document.write('<ul>');
	document.write('<li><strong>Free shipping on orders over $100</strong></li>');
	document.write('<li><strong>Same Day Shipping on orders received by 10:00am PST</strong></li>');
	document.write('<li>Safe Shopping</li>');
	document.write('<li>Discreet Shipping</li>');
	document.write('<li>Privacy Guaranteed</li>');
	document.write('<li>Gift Wrap Available</li>');
	document.write('<li>Free Gift Cards</li>');
	document.write('</ul>');

	document.write('</div>');
	
	document.write('</div>');
	

}

function DrawShoppingInfoBlock(){

	
document.write('<div class="Block">');
	

	// Show shopping info
	document.write('<div class="Block-Title">Shopping Information</div>');
	document.write('<div class="Block-Body">');
	
	document.write('<p>Thank you for shopping at ...!</p>');
	
	document.write('<ul>');
	document.write('<li>Gift cards are included at NO CHARGE when inserting a message below.</li>');
	document.write('<li>....</li>');
	document.write('<li>... will appear as the \'sender name\' on the shipping label.</li>');
	document.write('<li>Please visit our Customer Service page for any questions on shipping or payment options.</li>');
	document.write('<li>International shipments are available, but require email authorization of additional shipping charges.</li>');
	document.write('</ul>');

	document.write('</div>');

	document.write('</div>');
	

}

function draw_related(type, display, message, rel_image_enable, rel_image_width, rel_list_pricelab, rel_sale_pricelab, rel_our_pricelab) {
    var prodlink = "";
    var typematch = 0;
    var show_price = 1;
    if (typeof type == "undefined") {
        type = "0";
    }
    if (typeof display == "undefined") {
        display = 1;
    }
    if (typeof message == "undefined") {
        message = "";
    }
    if (typeof rel_image_enable == "undefined") {
        rel_image_enable = "PRODUCT";
    }
    if (typeof rel_image_width == "undefined") {
        rel_image_width = "";
    }
    if (typeof rel_list_pricelab == "undefined") {
        rel_list_pricelab = "Price ";
    }
    if (typeof rel_sale_pricelab == "undefined") {
        rel_sale_pricelab = "Sale Price";
    }
    if (typeof rel_our_pricelab == "undefined") {
        rel_our_pricelab = "Our Price";
    }
    if (Related_prod.length > 0) {
        for (itematn = 0; itematn < Related_prod.length; itematn++) {
            for (atn = 0; atn < Related_prod[itematn].related.length; atn++) {
                if (Related_prod[itematn].related[atn].crosstype == type) {
                    typematch = 1;
                }
            }
        }
    }
    if (typematch == 1) {
		document.write("<div class=\"Block\">");
		document.write("<div class=\"Block-Title\">");
		document.write(message);
		document.write("</div>");
		document.write("<div class=\"Block-Body\">");
		
		//document.write("<div><table cellpadding=\"1\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"SubHeadbgcolor\"><tr><td>");
		//document.write("<table cellpadding=\"10\" cellspacing=\"0\" border=\"0\" width=\"100%\" class=\"tablebgcolor\"><tr><td class=CartLabels>");
		//document.write(message);
		//document.write("</td></tr><tr><td>");
    }
    if (Related_prod.length > 0) {
        document.write("<Table border=0 cellpadding=2 cellspacing=2>");
        document.write("<TR valign=\"bottom\">");
        for (itematn = 0; itematn < Related_prod.length; itematn++) {
            for (atn = 0; atn < Related_prod[itematn].related.length; atn++) {
                if (Related_prod[itematn].related[atn].crosstype == type) {
                    if (user_guid != " ") {
                        prodlink = "<A class=\"relLink\" HREF=\"" + Related_prod[itematn].related[atn].link + "s_id=" + i_jscript_uu_sid + "&mscssid=" + user_guid + "&\">";
                    } else {
                        prodlink = "<A class=\"relLink\" HREF=\"" + Related_prod[itematn].related[atn].link + "s_id=" + i_jscript_uu_sid + "&\">";
                    }
                    if (display == 1) {
                        document.write("<TD class=relProduct WIDTH=\"100%\" VALIGN=TOP ALIGN=CENTER>");
                    } else {
                        document.write("<TD class=relProduct VALIGN=TOP ALIGN=CENTER>");
                    }
                    if (Related_prod[itematn].related[atn].image != "" &&
                        rel_image_enable != "NONE") {
                        document.write(prodlink);
                        if (rel_image_width != "") {
                            document.write("<img ALIGN=CENTER WIDTH =\"" + rel_image_width + "\" BORDER=0  VSPACE=0  HSPACE=0  ALT=\"" + Related_prod[itematn].related[atn].name + "\" SRC=\"assets/product_images/" + Related_prod[itematn].related[atn].image + "\"></A>");
                        } else {
                            document.write("<img ALIGN=CENTER BORDER=0  VSPACE=0  HSPACE=0  ALT=\"" + Related_prod[itematn].related[atn].name + "\" SRC=\"assets/product_images/" + Related_prod[itematn].related[atn].image + "\"></A>");
                        }
                        if (display == 1) {
                            document.write("</TD></TR><TR class=relProduct><TD class=relProduct WIDTH=100% VALIGN=TOP ALIGN=CENTER>");
                        } else {
                            document.write("<BR>");
                        }
                    }
                    document.write(prodlink + Related_prod[itematn].related[atn].name + "</A>");
                    if (show_price == 1 &&
                        Related_prod[itematn].related[atn].list_price != "") {
                        if (Related_prod[itematn].related[atn].on_sale != "False" &&
                            Related_prod[itematn].related[atn].sale_price != "" &&
                            Related_prod[itematn].related[atn].sale_price != "$0.00" &&
                            Related_prod[itematn].related[atn].sale_price != Related_prod[itematn].related[atn].list_price) {
                            document.write("<font class=ListPricewSaleR>" + rel_list_pricelab + Related_prod[itematn].related[atn].list_price + " </font>");
                            document.write("<font class=SalePriceR>" + rel_sale_pricelab + Related_prod[itematn].related[atn].sale_price + " </B></font>");
                        } else {
                            document.write("<font class=ListPricewoSaleR>" + rel_our_pricelab + Related_prod[itematn].related[atn].list_price + " </font>");
                        }
                    }
                    document.write("</TD>");
                    if (display == 1) {
                        document.write("</TR>");
                    }
                }
            }
            if (display != 1) {
                if ((itematn + 1) % 3 == 0 &&
                    itematn + 1 != packages_array[itematn].children.length) {
                    document.write("</TR>");
                }
            }
            document.write("</Table>");
        }
    }
    if (typematch == 1) {
        //document.write("</TD></TR></TABLE></TD></TR></TABLE></div>");
		document.write("</div>");
		document.write("</div>");
    }
}

function draw_related_dept(type, display, message, rel_image_enable, rel_image_width, rel_list_pricelab, rel_sale_pricelab, rel_our_pricelab) {
    var prodlink = "";
    var typematch = 0;
    var show_price = 1;
    if (typeof type == "undefined") {
        type = "0";
    }
    if (typeof display == "undefined") {
        display = 1;
    }
    if (typeof message == "undefined") {
        message = "";
    }
    if (typeof rel_image_enable == "undefined") {
        rel_image_enable = "PRODUCT";
    }
    if (typeof rel_image_width == "undefined") {
        rel_image_width = "";
    }
    if (typeof rel_list_pricelab == "undefined") {
        rel_list_pricelab = "Price ";
    }
    if (typeof rel_sale_pricelab == "undefined") {
        rel_sale_pricelab = "Sale Price";
    }
    if (typeof rel_our_pricelab == "undefined") {
        rel_our_pricelab = "Our Price";
    }
    if (Related_prod.length > 0) {
        for (itematn = 0; itematn < Related_prod.length; itematn++) {
            for (atn = 0; atn < Related_prod[itematn].related.length; atn++) {
                if (Related_prod[itematn].related[atn].crosstype == type) {
                    typematch = 1;
                }
            }
        }
    }
    if (typematch == 1) {
        document.write("<div class=\"Block\">");
        document.write("<div class=\"Block-Title\">");
        document.write(message);
        document.write("</div>");
        document.write("<div class=\"Block-Body\">");
    }
    if (Related_prod.length > 0) {
        document.write("<Table border=0 cellpadding=2 cellspacing=2 width=\"100%\">");
        document.write("<TR valign=\"bottom\">");
        for (itematn = 0; itematn < Related_prod.length; itematn++) {
            for (atn = 0; atn < Related_prod[itematn].related.length; atn++) {
                if (Related_prod[itematn].related[atn].crosstype == type) {
                    if (user_guid != " ") {
                        prodlink = "<A class=\"relLink\" HREF=\"" + Related_prod[itematn].related[atn].link + "s_id=" + i_jscript_uu_sid + "&mscssid=" + user_guid + "&\">";
                    } else {
                        prodlink = "<A class=\"relLink\" HREF=\"" + Related_prod[itematn].related[atn].link + "s_id=" + i_jscript_uu_sid + "&\">";
                    }
                    if (display == 1) {
                        document.write("<TD class=relProduct WIDTH=\"100%\" VALIGN=TOP ALIGN=CENTER>");
                    } else {
                        document.write("<TD class=relProduct VALIGN=TOP ALIGN=CENTER>");
                    }
                    if (Related_prod[itematn].related[atn].image != "" &&
                        rel_image_enable != "NONE") {
                        document.write(prodlink);
                        if (rel_image_width != "") {
                            document.write("<img ALIGN=CENTER WIDTH =\"" + rel_image_width + "\" BORDER=0  VSPACE=0  HSPACE=0  ALT=\"" + Related_prod[itematn].related[atn].name + "\" SRC=\"assets/product_images/" + Related_prod[itematn].related[atn].image + "\"></A>");
                        } else {
                            document.write("<img ALIGN=CENTER BORDER=0  VSPACE=0  HSPACE=0  ALT=\"" + Related_prod[itematn].related[atn].name + "\" SRC=\"assets/product_images/" + Related_prod[itematn].related[atn].image + "\"></A>");
                        }
                        if (display == 1) {
                            document.write("</TD></TR><TR class=relProduct><TD class=relProduct WIDTH=100% VALIGN=TOP ALIGN=CENTER>");
                        } else {
                            document.write("<BR>");
                        }
                    }
                    document.write(prodlink + Related_prod[itematn].related[atn].name + "</A>");
                    if (show_price == 1 &&
                        Related_prod[itematn].related[atn].list_price != "") {
                        if (Related_prod[itematn].related[atn].on_sale != "False" &&
                            Related_prod[itematn].related[atn].sale_price != "" &&
                            Related_prod[itematn].related[atn].sale_price != "$0.00" &&
                            Related_prod[itematn].related[atn].sale_price != Related_prod[itematn].related[atn].list_price) {
                            document.write("<font class=ListPricewSaleR>" + rel_list_pricelab + Related_prod[itematn].related[atn].list_price + " </font>");
                            document.write("<font class=SalePriceR>" + rel_sale_pricelab + Related_prod[itematn].related[atn].sale_price + " </B></font>");
                        } else {
                            document.write("<font class=ListPricewoSaleR>" + rel_our_pricelab + Related_prod[itematn].related[atn].list_price + " </font>");
                        }
                    }
                    document.write("</TD>");
                    if (display == 1) {
                        document.write("</TR>");
                    }
                }
            }
            if (display != 1) {
                if ((itematn + 1) % 3 == 0 &&
                    itematn + 1 != packages_array[itematn].children.length) {
                    document.write("</TR>");
                }
            }
            document.write("</Table>");
        }
    }
    if (typematch == 1) {
        document.write("</TD></TR></TABLE></TD></TR></TABLE>");
        document.write("</div>");
        document.write("</div>");
    }
}

function draw_related_product(type, display, message, rel_image_enable, rel_image_width, rel_list_pricelab, rel_sale_pricelab, rel_our_pricelab) {
    var prodlink = "";
    var typematch = 0;
    if (typeof type == "undefined") {
        type = "0";
    }
    if (typeof display == "undefined") {
        display = page_option_4;
    }
    if (typeof message == "undefined") {
        message = "";
    }
    if (nRelated > 0) {
        for (atn = 0; atn < nRelated; atn++) {
            if (Related_prod[atn].crosstype == type) {
                typematch = 1;
            }
        }
    }
    if (typematch == 1) {
        document.write("<div class=\"Block\">");
        document.write("<div class=\"Block-Title\">");
        document.write(message);
        document.write("</div>");
        document.write("<div class=\"Block-Body\">");
    }
    if (nRelated > 0) {
        document.write("<Table border=0 cellpadding=2 cellspacing=2>");
        if (display != 1) {
            document.write("<TR>");
        }
        for (atn = 0; atn < nRelated; atn++) {
            if (Related_prod[atn].crosstype == type) {
                prodlink = "<A class=\"relLink\" HREF=\"" + Related_prod[atn].link + "\">";
                if (display == 1) {
                    document.write("<TR class=relProduct><TD class=relProduct WIDTH=\"100%\" VALIGN=TOP ALIGN=CENTER>");
                } else {
                    document.write("<TD class=relProduct VALIGN=TOP ALIGN=CENTER>");
                }
                if (Related_prod[atn].image != "" &&
                    rel_image_enable != "NONE") {
                    document.write(prodlink);
                    if (rel_image_width != "") {
                        document.write("<img ALIGN=CENTER WIDTH =\"" + rel_image_width + "\" BORDER=0  VSPACE=0  HSPACE=0  ALT=\"" + Related_prod[atn].name + "\" SRC=\"assets/product_images/" + Related_prod[atn].image + "\"></A>");
                    } else {
                        document.write("<img ALIGN=CENTER BORDER=0  VSPACE=0  HSPACE=0  ALT=\"" + Related_prod[atn].name + "\" SRC=\"assets/product_images/" + Related_prod[atn].image + "\"></A>");
                    }
                    if (display == 1) {
                        document.write("</TD></TR><TR class=relProduct><TD class=relProduct WIDTH=100% VALIGN=TOP ALIGN=CENTER>");
                    } else {
                        document.write("<BR>");
                    }
                }
                document.write(prodlink + Related_prod[atn].name + "</A>");
                if (page_option_5 == 1 &&
                    Related_prod[atn].list_price != "") {
                    if (Related_prod[atn].on_sale != "False" &&
                        Related_prod[atn].sale_price != "" &&
                        Related_prod[atn].sale_price != "$0.00" &&
                        Related_prod[atn].sale_price != Related_prod[atn].list_price) {
                        if (Related_prod[atn].list_price != "") {
                            document.write("<font class=ListPricewSaleR>" + rel_list_pricelab + Related_prod[atn].list_price + " </font>");
                        }
                        document.write("<font class=SalePriceR>" + rel_sale_pricelab + Related_prod[atn].sale_price + " </B></font>");
                    } else {
                        if (Related_prod[atn].list_price != "") {
                            document.write("<font class=ListPricewoSaleR>" + rel_our_pricelab + Related_prod[atn].list_price + " </font>");
                        }
                    }
                }
                document.write("</TD>");
                if (display == 1) {
                    document.write("</TR>");
                }
            }
        }
        if (display != 1) {
            document.write("</TR>");
        }
        document.write("</Table>");
        document.write("</div>");
        document.write("</div>");
    }
}

function draw_specials()
{
	var specials_dept="";
	var collectibles_dept="";
	for (crs = 0; crs < leaf_tree.length; crs++) 
	{
		switch(leaf_tree[crs].dept_id){
			
			case "3002":
				specials_dept="3258";	
				collectibles_dept="3264";	
			break;
			
			case "3042":
				specials_dept="3259";	
				collectibles_dept="3265";	
			break;
			
			case "3064":
				specials_dept="3260";	
				collectibles_dept="3266";	
			break;
			
			case "3073":
				specials_dept="3261";	
				collectibles_dept="3267";	
			break;
			
			case "3076":
				specials_dept="3262";	
				collectibles_dept="3268";	
			break;
			
			case "3080":
				specials_dept="3263";	
				collectibles_dept="3269";	
			break;
			
			default:
				//~ specials_dept="3100";	
				//~ collectibles_dept="3101";
			break;
		}
	}
	if(specials_dept==""){specials_dept="3100"}
	if(collectibles_dept==""){collectibles_dept="3101"}
	document.write("<div class=\"Block\"><div class=\"Block-Title2\" ><a href=\"dept.asp?dept_id="+specials_dept+"\" onClick=\"return(visitargs('dept.asp','dept_id="+specials_dept+"','URL'));\">Specials</a></div><div class=\"Block-Body\" ></div></div>");
	document.write("<div class=\"Block\"><div class=\"Block-Title2\" ><a href=\"dept.asp&dept_id="+collectibles_dept+"\" onClick=\"return(visitargs('dept.asp','dept_id="+collectibles_dept+"','URL'));\">Collectibles</a></div><div class=\"Block-Body\" ></div></div>");
	document.write("<div class=\"Block\"><div class=\"Block-Title2\" >Contact Us</div><div class=\"Block-Body\"><a href=\"mailto:info@victorinoxstores.com\">info@victorinoxstores.com</a></div></div>");
}