function AddCss()
{   
   var spos = document.URL.lastIndexOf("/");
   if (spos != -1)
   {
      var pagePart = document.URL.substring(0,spos);
      var dpos = pagePart.lastIndexOf("-");
      if (dpos != -1)
      {
         var v = pagePart.substring(dpos+1);
   
         var cssFile;
         if (v==="p")
            cssFile = "Product_Detail";
		else if (v==="s")
            cssFile = "Category";
		else if (v==="a")
            cssFile = "Article";
 
         document.write('<link rel="stylesheet" href="/v/vspfiles/templates/lightinggal1/css/'+cssFile+'.css" type="text/css">');
      }
   }
}


function AddCss2()
{
	var sPath = window.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

	var cssFile2;
	if (sPage === "ProductDetails.asp") 
	   cssFile2 = "Product_Detail";
	else if (sPage === "Articles.asp") 
	   cssFile2 = "Article";
	else if (sPage === "SearchResults.asp") 
	   cssFile2 = "Search";
	else if (sPage === "MailingList_subscribe.asp") 
	   cssFile2 = "Mailing_List";
	   
	document.write('<link rel="stylesheet" href="/v/vspfiles/templates/lightinggal1/css/'+cssFile2+'.css" type="text/css">');
}

AddCss();
AddCss2();
