// WindowOpen JS functions
//
//
// Usage choices:
// <a href="index.html" target="fullWin" onClick="openFull();window.close()">Open full screen</a>
// <input type="button" name="btnFullScreen" onClick="openFull('');window.close()" value=" Full Screen ">
function openFull(url)
{
    if (document.all)
    {
        msgWindow = window.open(url,'fullWin','fullscreen=yes');
    	msgWindow.focus();
    }
    return true;
}

// Usage:
// <a href="index.html" target="newWin" onClick="openWindow()">Open full screen</a>
function openWindow()
{
    if (document.all)
    {
	    msgWindow = window.open('','newWin','toolbar=no,resizable=yes,status=no,scrollbars=yes,location=no,menubar=no,directories=no,width=700,height=550');
	    msgWindow.focus();
    }
    return true;
}
