

// css domain elements general access function
function checkDom(elementName){
	dom=eval(docObj+'.'+elementName+styleObj)
	}
	
// mouseover and out events to change button BG image
function changeBG1(x){
	checkDom(x)
	dom.backgroundPosition = "right";
	}

function changeBG2(x){
	checkDom(x)
	dom.backgroundPosition = "left";
	}

function openWindow(url, name, attrib){
	popupWin=window.open(url,name,attrib)
	}

//onclick event in table data to match with anchor href
function newLoc(F,L){
    window.parent.frames[F].document.location.href=document.links[L]
   	}
