


<script type="text/javascript">

<!--

function applycss(id,file,file2,fheight,bgcolor)

	{

	var oIframe = document.getElementById(id);

	var oDoc = oIframe.contentWindow || oIframe.contentDocument;

	if (oDoc.document)

		{oDoc = oDoc.document;}

	addcss(oDoc,file);

	if (file2!="") 	addcss(oDoc,file2);

	if (bgcolor!="") oDoc.body.style.backgroundColor = bgcolor;

	oIframe.height = (fheight != "auto") ? fheight : (oDoc.body.offsetHeight !== undefined) ? oDoc.body.offsetHeight : oDoc.height;

	}

function addcss(item,file)

	{

	var link = item.createElement('link');

	link.setAttribute('rel', 'stylesheet');

	link.setAttribute('type', 'text/css');

	link.setAttribute('href', file);

	item.getElementsByTagName('head')[0].appendChild(link);

	}

-->

</script>


