/*swoop.core.start*/
JSBASE=new String("/");
is_type={_obj:"object",_fnc:"function",_str:"string",_int:"number",_udf:"undefined",_vis:"visible",_hid:"hidden",_img:"image object"};
function swobj(path){
	this.version=0.01;
	this.pth=path;
	this.win=window;
	this.doc=document;
	this.frm=this.doc.forms;
	JSBASE=this.pth;}
swobj.prototype.getObjById=function(id){
	if(typeof(this.doc.all)==is_type._obj){
		if(typeof(this.doc.all[id])==is_type._obj){
			return this.doc.all[id];}}
	else if(typeof(this.doc.getElementById)==is_type._fnc){
		if(typeof(this.doc.getElementById(id))==is_type._obj){
			return this.doc.getElementById(id);}}
	return null;}
swobj.prototype.getObjByTag=function(tag){
	if((typeof(this.doc.all)==is_type._obj)&&(typeof(this.doc.all.tags)==is_type._obj)){
		if(typeof(this.doc.all.tags(tag))==is_type._obj){
			return this.doc.all.tags(tag);}}
	if(typeof(this.doc.getElementsByTagName)==is_type._fnc){
		if(typeof(this.doc.getElementsByTagName(tag))==is_type._obj){
			return this.doc.getElementsByTagName(tag);}}
	return null;}
swobj.prototype.cll=new Array();
swobj.prototype.cil=new Array();
swobj.prototype.hll=new Array();
/*swoop.core.end*/
