/**
 * ChatZone browser API
 */
var czBrowserContent = null;

if(navigator.appName != "Microsoft Internet Explorer")
{
    czBrowserContent = document.getElementById('czBrowserContent');
}
else
{
    czBrowserContent = document.all.item('czBrowserContent');
} 

function CzPlace(x, y)
{
    czBrowserContent.style.left = x + 'px';
    czBrowserContent.style.top = y + 'px';
}

function CzSetSize(w, h)
{
    czBrowserContent.style.width = w + 'px';
    czBrowserContent.style.height = h + 'px';
}

function CzOpenUrl(url)
{
	czBrowserContent.src = url;
}

function CzShow()
{
    czBrowserContent.style.display = 'block';
}

function CzHide()
{
    czBrowserContent.style.display = 'none';
}
CzHide();
