function showVideo(id) {
	document.write("<object width=\"314\" height=\"199\"><param name=\"movie\" value=\"http://www.youtube.com/v/"+id+">&amp;hl=en&amp;fs=1\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/"+id+"&amp;hl=en&amp;fs=1\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"314\" height=\"199\"></embed></object>");
}function fillPng(id,image,w,h)
{
	//alert(id);
	
	var writeFill = "";
	
	if ((version >= 5.5) && version < 7 && (document.body.filters))
	{
		//alert(id);
		document.getElementById('sub_' + id).style.width = w + "px";
		document.getElementById('sub_' + id).style.height = h + "px";
		document.getElementById('sub_' + id).style.position = "relative";
		document.getElementById('sub_' + id).style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + image + "', sizingMethod='scale');";
		
		//alert(document.getElementById(id).style.width);
	}
	else
	{
		writeFill = "<img src='" + image + "' name='" + id + "' width='" + w + "' height='" + h + "' alt='' border='0'>";
		document.getElementById(id).innerHTML = writeFill;
	}
}

