function formEmbed(id, code) {
	var dv = document.getElementById(id);
	if (dv.innerHTML)
		return true;
	dv.innerHTML = '<embed src="http://www.youtube.com/v/'+code+'" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed>';
	dv.style.display = '';
    return false;
}
