
var checkarray=new Array(6)
checkarray[1]="font-weight:bold; "
checkarray[2]="font-style:italic; "
checkarray[3]="text-decoration:underline; "
checkarray[4]="text-transform:uppercase; "

document.linkeffect.colorvalue.value=''
document.linkeffect.sizevalue.value=''
document.linkeffect.highlightvalue.value=''

for (i=0;i<6;i++)
document.linkeffect.thestyles[i].checked=false
function applysheet(){
if (!document.all){
alert("You need IE 4.x to use this tool!")
return
}
checkarray[0]="color:"+document.linkeffect.colorvalue.value+"; "
checkarray[5]="font-size:"+document.linkeffect.sizevalue.value+"; "
checkarray[6]="background-color:"+document.linkeffect.highlightvalue.value+"; "
thesheet=''
for (i=0;i<7;i++){
if (document.linkeffect.thestyles[i].checked==true)
thesheet+=checkarray[i]
}

document.styleSheets[0].removeRule(1)
document.styleSheets[0].addRule("a:hover",thesheet)
}


function generatecss(){
document.csscode.csscode2.value='<style><!--a:hover{'+thesheet+'}--></style>'
}


