Graphics Php

Add this function to an include-able php file.
=================CUT====================
function flashembed($file, $width, $height) {
$swfdir = "images/swf";
echo " codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" WIDTH=$width HEIGHT=$height>





";
}
=================CUT====================
Include the function file; and call the function, specifying the swf file, the width and height e.g.
include ('functions.php');
flashembed(test, 700, 400);