			function avPopFlash2(url,twidth,theight,gameName){
				var qw = 600+18;
				var qh = 500+28;
				var url = "Games/autopuzzler.php?link=" + url + "&swidth=" + twidth + "&sheight=" + theight;
				var args = "height="+qh+",width="+qw+",toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=1";
				
				vidwin = window.open( url, "LBG", args );
				vidwin.window.focus(); 		
			}
			function avPopFlash(url,twidth,theight,gameName){
				var qw = twidth+18;
				var qh = theight+28;
				var url = "http://leftbraingames.com/Games/loader_flash.php?movie=" + url + "&swidth=" + twidth + "&sheight=" + theight + "&name="+ gameName;
				var args = "height="+qh+",width="+qw+",toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=1";
				
				vidwin = window.open( url, "LBG", args );
				vidwin.window.focus(); 		
			}
			function avPopHtml(url,twidth,theight,gameName){
				var qw = twidth+18;
				var qh = theight+28;
				var url =  url + "?swidth=" + twidth + "&sheight=" + theight + "&name="+ gameName;
				var args = "height="+qh+",width="+qw+",toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=1";
				
				vidwin = window.open( url, "LBG", args );
				vidwin.window.focus(); 		
			}
			function avPopDirector(url,twidth,theight,gameName){
				var qw = twidth+18; 
				var qh = theight+28;   
				var url = "http://leftbraingames.com/Games/loader_shockwave.php?movie=" + url + "&swidth=" + twidth + "&sheight=" + theight + "&name="+ gameName;
				var args = "width="+qw+",height="+qh+",toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=1";
				  
				vidwin = window.open( url, "LBG", args );
				vidwin.window.focus(); 		
			}
			function pictView(url, twidth, theight) {
				var qw = twidth+16; 
				var qh = theight+26; 
				var url = "http://leftbraingames.com/Games/loader_image.php?image=" + url;
				var args = "width="+qw+",height="+qh+",toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=1";
				
				vidwin = window.open( url, "LBG", args );
				vidwin.window.focus(); 
			}
			var movieName = "LBG";
			
			function thisMovie( movieName ) {
				// IE and Netscape refer to the movie object differently.
				// This function returns the appropriate syntax depending on the browser.
				if ( navigator.appName.indexOf ("Microsoft") !=-1 ) {
					return top.frames[0].window[movieName]
				} else {
					return top.frames[0].document[movieName]
				}
			}
			function call_function( value ){
				document.LBG.TGotoLabel( '/',  "movie"+value );
				document.LBG.thisMovie( movieName ).Play(); //thisMovie( movieName )
			}
	