function GetElement(id) {
	var	obj	= d.getElementById(id);
	if(obj==null)	throw "Element is null";
	else			return obj;		
}
function GetNamedElements(id) {
	var	obj	= d.getElementsByName(id);
	if(obj.length < 1)	throw "Element is null";
	else				return obj;		
}
function Get(Node,Find) {
	var	slct	= GetNode(Node,Find),
	txt	= "";
	if(slct!=null) {
		for( i = 0; i < slct.childNodes.length; i++ )
			txt	+=slct.childNodes[0].nodeValue;
		return txt;
	}
	return "";
}
function GetNode(Node,Find) {
	var	pths	= Find.split('/'),
	nds	= Node,
	slct	= null,
	txt	= "";
	for( i = 0; i < pths.length; i++) {
		slct		= null;
		for(var j = 0; j < nds.childNodes.length; j++) {
			var	nd	= nds.childNodes[j];
			if(pths[i].toLowerCase() == nd.nodeName.toLowerCase()) {
				slct	= 
				nds	= nd;
				break;
			}
		}
	}
	return slct==null?Node:slct;
}
