require_once( 'lib/database.php'); require_once( 'tools.php'); // - - - - - - - - - - - - - - - AJAX Stuff Start - - - - - - - - - - - - - require_once ("xajax/xajax.inc.php"); function showVid( $vidid ) { $vm = new VideoManager(); $vid = $vm->getByID( $vidid ); $w = 320; $h = 240; $html = sprintf( '', $w, $h, $vid->fileName, $vid->fileName.'-full.jpg', $w, $h ); $objResponse = new xajaxResponse(); $objResponse->addAssign( "video", "innerHTML", $html ); $objResponse->addScriptCall( 'showVidScreen' ); return $objResponse; } $xajax = new xajax(); $xajax->registerFunction("showVid"); $xajax->processRequests(); // - - - - - - - - - - - - - - - AJAX Stuff End - - - - - - - - - - - - - - $vars = array( ); $errorMsg = ''; $done = 0; trackVars( $vars ); $scripts[] = "normalstuff.js"; $scripts[] = "timeline.js.php"; include_once ( 'header.php' ); ?>
/*
*/ ?>
include_once( 'footer.php' ); ?>