<!--
var domain_name = location.href.replace("http://","").replace("https://","").replace("www.","");
var url_path = domain_name.substr(domain_name.indexOf("/"));
domain_name = domain_name.substr(0, domain_name.indexOf("/"));

var rxPR_IndexPage = /\/\d+\/c\/index\.html/;
var rxPR_CatPage = /\/\d+\/(\w+)\/c\/index\.html/;
var rxPR_PDPage = /\/p\/([^\/]*)\.html/;

var page_type = "";
var page_title = "";

if (url_path.match(rxPR_IndexPage))
{
	// index page
	page_type = ": HP";
}
if (url_path.match(rxPR_CatPage))
{
	// category page
	page_type = ": CAT";
	page_title = ": " + url_path.match(rxPR_CatPage)[1]
}
if (url_path.match(rxPR_PDPage))
{
	// product detail page
	page_type = ": PD";
	page_title = ": " + document.title;
}

s_hd.server = domain_name;
s_hd.channel = domain_name;
s_hd.pageName = "PR" + page_type + page_title;
s_hd.prop1 = "PR";
s_hd.prop2 = "PR" + page_type + page_title;
s_hd.prop12 = "PR" + page_type;

var s_code=s_hd.t();if(s_code)document.write(s_code)
//-->
