It needs to be inside a <script> tag. If it's nside a script tag it will not show up on the site.
Like so:
<script>
function launchChat(url) {
myWindow = window.open(url,'name','height=407,width=650,status=1');
if (window.focus) {
myWindow.focus();
}
return false;
}
</script>