Yes, to use that field.
Say you have product A, and we give that product the model: abc.xml.
Now in your product_info template:
We can do something like this (Im writing in pseudo code here)
PHP Code:
// checking if the product has model
if(exist($pmodel) && strlen(trim($pmodel))>0){
$flash_obj = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="550" height="400" id="test3" align="middle">
<param name="allowScriptAccess" value="sameDomain" /><param name="flashVars" value="currxml=XML_LINK" />
<param name="movie" value="flash/~main.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="flash/~main.swf" quality="high" flashVars="currxml=XML_LINK" bgcolor="#ffffff" width="550" height="400" name="test3" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>';
$flash_obj = str_replace('XML_LINK', $pmodel, $flash_obj);
echo $flash_obj;
}