//===== relative URL handling code for js files ================
sWZBaseFolder = "www.samling.com.cn";                          
sWZ = window.location.href;                                     
iWZ = sWZ.indexOf(sWZBaseFolder) + sWZBaseFolder.length + 1;    
sWZBase = sWZ.substring(0,iWZ);                                 
//===== Copyright © 2001 Spidersoft. All rights reserved. ======

function findTag(eItem) {
	var objATag = new Object();
	objATag = eItem.all.tags("A").item(0)
	return objATag;
}

function NavMOver(eItem){
	eItem.DefaultBgColor = eItem.style.backgroundColor;
	eItem.DefaultTxtColor = eItem.style.color;
	eItem.style.backgroundColor = "#FF9900";
	eItem.style.cursor="hand";
//window.status = findTag(eItem).getAttribute("HREF");
}

function NavMOut(eItem){
	eItem.style.backgroundColor = eItem.DefaultBgColor;
	findTag(eItem).style.color=eItem.DefaultTxtColor
//window.status= "";
}

function NavMDown(eItem){
	findTag(eItem).style.color="#000000"
}

function NavMUp(eItem){
	top.location.href= findTag(eItem).getAttribute("HREF")//leave "top" in, so we can navigate away from framed pages.
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
