function openFlashPopup( myText, myWindowName)
{ 
	switch (myWindowName) 
	{
		case 'feedback':
			window.open(myText, myWindowName, "status, top=0, scrollbars=0,resizable=0,width=700,height=100");
			break;
		case 'im':
			window.open(myText, myWindowName, "status, top=0, scrollbars=0,resizable=0,width=450,height=500");
			break;
		case 'help':	
			showHelp();
			break;
		case 'room':
			
			break;
		default :
			window.open(myText, myWindowName, "status, top=0, width=960px, height=580px, scrollbars=1,resizable=1");
			break;		
		
	} 
}

	function showHelp()
    {
      	var myHelp = document.getElementById('helpBox');
       	myHelp.style.display = 'block';
    }
    
    function hideHelp()
        {
        	var myHelp = document.getElementById('helpBox');
        	myHelp.style.display = 'none';
        }