function ShowVideo(target, width, height)
{
	var urlString = "http://www.opitzworld.com/opitzworld/img/" + target;
	document.write('<object height=' + height + ' width=' + width + ' classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
	document.write('<param name="src" value=' + urlString + ' >\n');
	document.write('<param name="autoplay" value="true" >\n');
    document.write('<embed height="280" widht="320" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/" src=' + urlString + ' autoplay="true"/>\n');
	document.write('</object>\n');
}

