function DisplayBanner(path, width, height){
                 text = "<object type=\"application/x-shockwave-flash\" data=\""+path+"\" width=\""+width+"\" height=\""+height+"\" style=\"padding: 0; margin: 0;\" wmode=\"transparent\">\r\n";
                 text += "<param name=\"movie\"	value=\""+path+"\" style=\"padding: 0; margin: 0;\" />\r\n";
                 text += "<param name=\"wmode\" value=\"transparent\" />\r\n";
                 text += "<img src=\"/images/splash.jpg\" />\r\n";
                 text += "</object>";
                 document.write(text);
}