Need Help in chat plugin..

Hi friends,

I just made a plugin to integrate php free chat to elgg 1.8 (I know its already there for 1.7).. the plugin structure is like this

chat_pfc

|_ languages

    |_en.php

|_ pages

    |_chat_pfc

        |_index.php

|_vendors

    |_phpfreechat

        |_index.php

        |_other folders and files

|_Views

    |_default

        |_chat_pfc

           |_nav.php

        |_pages

           |_chat.php

           |_commands.php

|_manifest.xml

|_start.php

I want to call the index.php file inside the vender/phpfreechat/ in chat.php file of views/default/pages/

I can do that using inframes and its working, But i want to call using the elgg_view how its possible?

Also in mod/page/index.php i added the following code:

switch ($vars['page']) {
        case 'commands':
        $content = elgg_view('page/commands');
        break;
    case 'chat':
    default:
        $content = elgg_view('page/chat');
        break;
}

if I change the phpfreechat folder to views/default/page/ and change the

$content = elgg_views("page/phpfreechat/index") its not loading...

Any idea y?
thanks for your help...