// JavaScript Document
var checkobj

function dedication_enable(el){
checkobj=el
if (document.all||document.getElementById){
for (i=0;i<checkobj.form.length;i++){  //hunt down submit button
var tempobj=checkobj.form.elements[i]
if(tempobj.name.toLowerCase()=="dedication")
tempobj.disabled=0
}
}
}

function dedication_disable(el){
checkobj=el
if (document.all||document.getElementById){
for (i=0;i<checkobj.form.length;i++){  //hunt down submit button
var tempobj=checkobj.form.elements[i]
if(tempobj.name.toLowerCase()=="dedication")
tempobj.disabled=1
}
}
}


