// JavaScript Document
currentvideo=document.getElementById('current');
genesisvideo = "file=http://smartlearnwebtv.com/demovideos/IJ MAT 03 CB 01.flv&autostart=true";
shashank2video="file=http://smartlearnwebtv.com/demovideos/IJ PHY 03 SB 01.flv&autostart=true";
mananvideo = "file=http://smartlearnwebtv.com/demovideos/IJ MAT 03 SB 01.flv&autostart=true";
aieeematdemovideo = "file=http://smartlearnwebtv.com/demovideos/AIEE DEMO MATHS.flv&autostart=true";
aieeephydemovideo = "file=http://smartlearnwebtv.com/demovideos/AIEE DEMO PHYSICS.flv&autostart=true";
aieeechedemovideo = "file=http://smartlearnwebtv.com/demovideos/AIEE DEMO CHEMISTRY.flv&autostart=true";
fpmatdemovideo = "file=http://smartlearnwebtv.com/demovideos/FPSMAT01SB01.flv&autostart=true";
fpphydemovideo = "file=http://smartlearnwebtv.com/demovideos/FPSPHY01SB01.flv&autostart=true";
fpchedemovideo = "file=http://smartlearnwebtv.com/demovideos/FPSCHE01SB01.flv&autostart=true";
		
function replace(videotag)
{
	 panel=document.getElementById('demovideopanel');
	 panel.removeChild(currentvideo);
	 var newdiv=document.createElement('div');
	 newdiv.setAttribute('id',videotag);
	 var videourl=videotag + 'video';
	 newdiv.innerHTML="<object type='application/x-shockwave-flash' data='mediaplayer/player.swf' width='320' height='310'><param value='mediaplayer/player.swf' name='movie' /><param value='true' name='allowfullscreen'/><param value='always' name='allowspaces'/><param value='" + eval(videourl) + "' name='flashvars'/><p><a href='http://get.adobe.com/flashplayer'>Get Flash</a> to see this player.</p></object> ";
	panel.appendChild(newdiv);
	currentvideo=document.getElementById(videotag);
}
