			function mygetstyle(id,prop) {//not good for prop with -/camel
				var ob=document.getElementById(id);
				if(document.defaultView) {
					var hh=document.defaultView.getComputedStyle(ob, null).getPropertyValue(prop);
					return hh;
				}
				return ob.currentStyle[prop];
			}

