// some of the attirbutes are ignored because of the css "divtext" !

var myMarginTop = "14px";


var myNumPixelDown = 0;
var myNumPixelLeft = -9;
var myBackgroundColor = "gray";
var myFontColor = "white";
var myBorderStyle = "solid"; // solid |dashed |dotted |double |groove |hidden |inset |none |outset |ridge |
var myBorderColor = "10274f";
//var myBorderWidth = "2px"; //for all directions
var myBorderTop = "6px";
var myBorderBottom = "2px";
var myBorderLeft = "2px";
var myBorderRight = "2px";

var myFontFamily = "serif"; // serif |sans-serif | cursive| fantasy| monospace
var myFontSize = "medium"; // xx-small |x-small |small |medium |large |x-large 
var myFontStyle = "normal"; // normal |italic 

var myfloat = "left";

function onLoad (){
}

function showDiv(theObj){
	var theObj = eval("document.all." + theObj);

	theObj.style.visibility="visible";

	theObj.style.pixelTop=myNumPixelDown;
	theObj.style.pixelLeft=myNumPixelLeft;

	theObj.style.marginTop=myMarginTop;

	theObj.style.backgroundColor=myBackgroundColor;
	theObj.style.color=myFontColor;

//	theObj.style.borderStyle=myBorderStyle;
//	theObj.style.borderColor=myBorderColor;
//	theObj.style.borderWidth=myBorderWidth;
//	theObj.style.borderTopWidth=myBorderTop;
//	theObj.style.borderBottomWidth=myBorderBottom;
//	theObj.style.borderLeftWidth=myBorderLeft;
//	theObj.style.borderRightWidth=myBorderRight;

	theObj.style.fontFamily=myFontFamily;
	theObj.style.fontSize=myFontSize;
	theObj.style.fontStyle=myFontStyle;

	theObj.style.float = myfloat;

	return false;
}

function hideDiv (theObj){
	var theObj = eval("document.all." + theObj);
	theObj.style.visibility="hidden";
	return false;
}
