
function stylecheck()
{
	var elt = document.getElementById("linediv_elt");
	var supported = 0;

	elt.style.borderRadius = '2px';
	elt.style.mozBorderRadius = '2px';
	elt.style.webkitBorderRadius = '2px 2px';

	if (elt.style.borderRadius == '2px') { supported = 1; }
	if (elt.style.mozBorderRadius == '2px') { supported = 1; }
	if (elt.style.webkitBorderRadius == '2px 2px') { supported = 1; }

	if (document.getElementById('movieurl')) {
		page_loaded();
	}

	if (supported && 0) {
		elt.style.border="2px solid #ffff80";
		elt.style.height="0px";
		elt.style.minHeight="0px";
		elt.style.backgroundColor="#ffff80";
		// elt.style.webkitBorderImage="-webkit-gradient(linear, left top, left bottom, from(#ffff80), to(#c0c0a0)) 16 16 16 16";
		elt.style.webkitTransform="";
		elt.style.padding="0px";
		elt.style.paddingLeft="0px";
		elt.style.marginLeft="30px";
		elt.style.marginBottom="10px";
		var elt_b = document.getElementById("linediv_contents");
		elt_b.style.display = "none";
		for (var c = elt_b.firstChild; c; c = c.nextSibling) {
			c.style.display = "none";
		}
		alert("supported");
	}
}
