// Camille Gaspard camgas@msn.com 2005 CopyRight

function cascadedstyle(el, cssproperty, csspropertyNS){
			if (el.currentStyle)
			return el.currentStyle[cssproperty]
			else if (window.getComputedStyle){
			var elstyle=window.getComputedStyle(el, "")
			return elstyle.getPropertyValue(csspropertyNS)
			}
			}
