function scrollwindow(url,width,height,name) {
	name=window.open(url,name,'width=' + width+ ',height=' + height + ',statusbar=no,menu=no,toolbars=no,scrolling=yes,scrollbars=yes, resizable=yes');
}

function staticwindow(url,width,height,name) {
	name=window.open(url,name,'width=' + width+ ',height=' + height + ',statusbar=no,menu=no,toolbars=no,scrolling=no,scrollbars=no, resizable=no');
}

function redirect(selectObj) {
	document.location = selectObj.options[selectObj.selectedIndex].value;
}

function getRef(obj){
        return (typeof obj == "string") ?
        document.getElementById(obj) : obj;
}

function setStyle(obj,style,value){
        getRef(obj).style[style] = value;
       
}

function setFonts(obj, className){
        getRef(obj).className = className;
}