
var link="    <a href=index.asp>HOME</a>    ";
link+="<a href=aboutus.html> ABOUT US </a>   ";
link+="<a href=products.asp> PRODUCTS</a>   ";
link+="<a href=sareecare.html> SAREE CARE</a>   ";
link+="<a href=testimonials.html> TESTIMONIAL</a>    ";
link+="<a href=links.html> LINKS</a>    ";
link+="<a href=faq.html> PRIVACY POLICY</a>   ";
link+="<a href=#> NEWS LETTER</a>    ";
link+="<a href=chat.asp> LIVE CHAT </a>   ";
link+="<a href=enquiry.html> BUSINESS ENQUIRY</a>   ";
link+="<a href=feedback.html> FEEDBACK</a>    ";
link+="<a href=contactus.html> CONTACT US</a> ";

function ShowSubCategories(id) {
var ctrl = document.getElementById("Cat"+id);
if(!ctrl) return;
if (ctrl.style.display=="none")
	ctrl.style.display=""
else
	ctrl.style.display="none"
}
