// JavaScript Document
function PauseVideo()
{
    try
    {
        callFlash("pauseVideo","true");
    }
    catch(err)
    {
        // Eat the error - the player isn't loaded yet.
    }
	return false;
}

function launchminisite(url) {
	try
	{
	    callFlash("pauseVideo","true");
	}
	catch(err)
	{
	    // Eat the error - the player isn't loaded yet.
	}
	newwindow=window.open(url,'CGmicro','toolbar=no,scrollbars=yes,resizable=yes,width=800,height=600')
	if (window.focus) {newwindow.focus()}
	return false;
}

function launchexternalsite(url) {
	try
	{
	    callFlash("pauseVideo","true");
	}
	catch(err)
	{
	    // Eat the error - the player isn't loaded yet.
	}
	newwindow=window.open(url,'CGmicro','toolbar=no,scrollbars=yes,resizable=yes,width=800,height=600')
	//newwindow=window.open(url,'CGmicro')
	if (window.focus) {newwindow.focus()}
	return false;
}
