function GGHandleScript(Script) {
if (Script != "") {
var scripts = Script.split(".")
	for (i = 0; i < scripts.length; i++ ) {
		switch(scripts[i].substring(0,1)){
		case "0":
		break;
		case "1":
		case "2":
		case "3":
		case "4":
		case "5":
		case "6":
		case "7":
		case "8":
		case "9":
//		alert(frames['frmSlides'].flashSlidesPlayer('presentation'))
    currentslide = scripts[i]
		frames['frmSlides'].flashSlidesPlayer('slides').playbackController_gotoSlide(scripts[i]-1, true)
		break;
		case "t":
//		alert(scripts[i].substring(1))
		frames['frmInteractive'].highlightmenu(scripts[i].substring(1))
		break;
		case "l":
		frames['frmInteractive'].showcollateral(scripts[i].substring(1))
		break;
		case "n":
    frames['frmSlides'].flashSlidesPlayer('slides').playbackController_gotoNextStep(scripts[i].substring(1))
		break;
		}
	}
}
}