// 放在页面尾部的js


// 隐藏

if (true){
	
	var hideexist = function(id){
		if ($(id)){$(id).hide();}
	};
	var url = document.URL;
	if (window.top!=window && url.indexOf('/goods/')>=0 && referer.length>0){
		$(document.body).addClassName('Goods_Hidden');
		hideexist('Header'); // 头部
		hideexist('headmenu'); // 菜单
		hideexist('Navigation'); // 当前位置
		//hideexist('GoodsTitle'); // 产品名称
		hideexist('GoodsGroupTree'); // 产品树
		hideexist('Footer'); // 尾部
		hideexist('inhtml_reg_button');
		
		if (false){
		Event.observe(window,'load',function(){
			var ref = referer.substr(0, referer.indexOf('/', 12)); //12表示最少的https:n.xx/的长度
			ref = ref + '/tonghui_proxy.html#' + WinHelper.getH();
			window.frames['iframe_hidden_domain'].location = ref;
		});
		}
		//window.navigator.baoz = 60;
		//window.alert(window.navigator.baoz);
		//window.name = '22222';
		//window.alert(window.top.name);
	}
}

