// JavaScript Document

function InsertVideo( filePath, width, height )
{
	var strInsert;
	strInsert = '<embed src="' + filePath + '" width="' + width + '" height="' + height + '"></embed>';
	document.write( strInsert );	
}