function openWin(url, name, features)
{
	window.open(url, name, features);
}


function centerWin(url, name, width, height, features) 
{
	var top = (screen.height - height)/2;
	var left = (screen.width - width)/2;
	window.open(url, name," top = " + top + ", left = " + left + ", width = " + width + ", height = " + height + ", " + features);
}

var win;
function launchWin(url, name)
{
    var w = (screen.width  - 10);
    var h = (screen.height - 30);

    features = ('width = ' + w + ', height = ' + h + 
                ', screenX = 0, screenY = 0, directories = 0, ' +
                'fullscreen = 1, location = 0, menubar = 0, ' +
                'scrollbars = 1, status = 0, toolbar = 0');
    
    win = window.open(url, name, features);
    setTimeout('win.focus();', 250);
}

function resize()
{
	window.resizeTo(575,650);
}

function resizeConges()
{
	window.resizeTo(350, 250);
}

function resizeSmall()
{
	window.resizeTo(0, 0);
}

function  stopMusic()
{
	stopMusic();
}