Dguestbook Query

Hi

I was wondering someone would be good enough to point out where I’m going wrong. I’ve tried to load the dguestbook into anther swf file so that the index contains the background and the menu, then go to the contacts page where there is a button to load the guestbook. It loads using the following action script:

stop ();
_level0._root.fire.gotoAndPlay(5);
var myMCL:MovieClipLoader = new MovieClipLoader();
myMCL.loadClip(“dguestbook.swf”, “container”);

It loads fine with this action script, but when people post a comment, it won’t display it. But if I check the dguestbook entries.html file that contains the posts, it says they are there, but they are not displayed in the guestbook.

Dguestbook uses the following action script:

this._lockroot=true;
//Change the value of “high_num” to declare how many entries you prefer to load per pages.
low_num = 0;
high_num = 10;
total_entries
//This creates a varialble to show the current numbers of entries
nums=low_num+" - “+high_num;
// Creating a unique id to prevent chaching. This has been done here by getting time.
ui=new Date().getTime();
//Loads the PHP script.
loadVariablesNum (“dguestbook.php low_num=”+low_num+”&high_num="+high_num+"&dscripts="+ui, 0);

My guestbook can be found at: http://www.giantz.co.uk/

I would be grateful for any help or advice.

Thanks