// JavaScript Document
// Script copyright Vicweb Consulting - www.vicweb.com.au - What's Possible

function load_movie(new_source,w,h) {
	if(new_source.indexOf("intro")>=0) {
		parent.driver.location.href='intro.htm?w='+w+'&h='+h;
	} else {
		parent.driver.location.href='video.htm?l='+new_source+'&w='+w+'&h='+h;
	}
}

var width, height, avail_width, avail_height;

 avail_width=screen.availWidth -menu_width;
 avail_height=screen.availHeight-40;

	height = 315; 
	width = 388;  


//parent.resizeTo(screen.availwidth,screen.availheight);


parent.moveTo(0,0);
/*if(logo!="") // Display the logo if it is set in setup.js
	document.writeln('<img src="'+path+logo+'" width="'+logo_width+'" height="'+logo_height+'">');*/
document.writeln('<br><br>');
document.write('<select name="menu_list" size="');
document.write(height/25);
document.writeln('" ');
document.writeln('onclick="load_movie(this.value,'+width+','+height+')">'+'');
document.writeln(' <option value="'+v_path+'/intro'+v_suffix+'" selected>Intro</option>');
document.writeln('</select>');
