function flash_movie(src, ids, width, height, wmode) { var wh = ""; if(parseInt(width) && parseInt(height)) { wh = " width='"+ width +"' height='"+ height +"' "; } return ""; } function obj_movie(src, ids, width, height, autostart) { var wh = ""; if(parseInt(width) && parseInt(height)) { wh = " width='"+ width +"' height='"+ height +"' "; } if(!autostart) autostart = false; return ""; } function doc_write(cont) { document.write(cont); }