/* SEEdit DOM Style Script version 1.0 ( March 2007) *//* Please report any bugs! *//* Set Colors */function se_SetBackgroundColor(id,bcolor) {document.getElementById(id).style.backgroundColor=bcolor;}function se_SetForeColor(id,fcolor) {document.getElementById(id).style.Color=fcolor; }function se_SetForeAndBackColor(id,fcolor,bcolor) {document.getElementById(id).style.Color=fcolor;document.getElementById(id).style.backgroundColor=bcolor;}/* Hide and Show */function se_ShowElement(id) {document.getElementById(id).style.visibility='visible';}function se_HideElement(id) {document.getElementById(id).style.visibility='hidden';}/* List Styles Note: BAD  Support in browsers.. */function se_ChangeListStyleType(id,toType) {document.getElementById(id).style.listStyleType=toType; }/* Cursor */function SetCursor(id,cType) {document.getElementById(id).style.cursor=cType; }function se_SetCursorNormal(id) {document.getElementById(id).style.cursor='default'; }/* Width and Height */function se_SetHeight(id,h) {document.getElementById(id).style.height=h;}function se_SetWidth(id,w) {document.getElementById(id).style.width=w;}function se_SetWidthHeight(id,w,h) {document.getElementById(id).style.width=w;document.getElementById(id).style.height=h;}/* Border *//* 1px solid #000000 */function se_SetBorder(id,b) {document.getElementById(id).style.border=b;}