// JavaScript Document
function newWindow(screenwidth,screenheight,url,scroll) {
	var winl = ((screen.width - (screenwidth)) / 2)-12;
	var wint = ((screen.height - (screenheight)) / 2)-20;
	
	winprops = 'height='+screenheight+',width='+screenwidth+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=no';
	
	win = window.open(url, 'wallpaper', winprops); win.focus();
}


/*---------------- StopAll Sounds -----------------*/

function stopSounds() 
{
    thisMovie("ei").stopSounds();
}

function thisMovie(movieName) 
{
    if (navigator.appName.indexOf("Microsoft") != -1) {
        return window[movieName]
    }
    else {
        return document[movieName]
    }
}

/*---------------- -------------- -----------------*/