/* flash movie commands */
function runCogs()
{
	thisMovie("cogLeft").run();
	thisMovie("cogRight").run();
}

function runEggs()
{
	thisMovie("eggs").run();
}

function thisMovie(movieName) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName]
	}
	else {
		return document[movieName]
	}
}


/***************************************************** */

function openWindow(event){
	var defW = screen.availWidth;
	var defH = screen.availHeight;
	
	var windowStyle;
	if(document.all){
		windowStyle = "height=" + defH +",width=" + defW +",channelmode=yes,directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,left=0";
	} else {
		windowStyle = "height=" + defH +",width=" + defW +",directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,left=0";
	}
	
	var nextUrl = "yoobot.html";
	
	var win=window.open(nextUrl, "yoobotapp", windowStyle);
	if(navigator.userAgent.indexOf('Safari') > 0){
		win.moveTo(0,0);
	}
	win.focus();
}

