var buttontarget=""

if (document.images){
	after=new Image()
	after.src="images/btninit2.png"
}

function change2(e, image) {
	var el=window.event? event.srcElement: e.target
	if (el.tagName=="INPUT"&&el.type=="button")
		el.style.backgroundImage="url"+"('"+image+"')"
}

function jumpto2(url){
	if (buttontarget=="")
		window.location=url
	else if (buttontarget=="_new")
		window.open(url)
	else
		parent[buttontarget].location=url
}