// JavaScript Document
// method - set iframes to display:none in css
//        - tag id of iframe as "showtag"
//        - insert iframe widget
//        - call this script to enable
//
// hence, iframes only displayed if js is enabled

function iframes_enable(myElement)
{
  var target = document.getElementById (myElement);
	{
	    target.style.display="block";
	}
}

