function clHandleFrame(iframe)
	{
		if( iframe.id.substr(0,10)=="cliplister") {
			var test = new Image();
			test.onload = function() {
				if (test.width<2) {
					iframe.style.height="0";
					iframe.style.width="0";
					iframe.style.visibility="hidden";
					iframe.style.margin="0";
				}
			}
			var s = iframe.src.replace(/\/ind/g,"");
			test.src = s.replace(/playBtn/g,"play")+"/cx";
		}
	}

	function cliplister()
	{
		var iframes = document.getElementsByTagName("iframe");
		var i;
		for(i=0;i<iframes.length;i++) {
			clHandleFrame(iframes[i]);
		}
	}