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);
	}
}