/*'----------------------------------------------------------------------
' Copyright ©1999,2000 GipsyMedia Limited. All Rights Reserved.
' Please see the file "licence.txt" for licencing details.
' File:	scripts.js
' Owner:	danp@gipsymedia.com
' Purpose:	Functions used by forums
'----------------------------------------------------------------------
*/

function openWindow(url) 
{
  popupWin = window.open(url,'new_page','top=20,left=100,width=500,height=400')
}

function openHelpWindow(url) 
{
  popupWin = window.open(url,'new_page','resizable,scrollbars,top=20,left=20,width=500,height=400')
}

// used in displaying information
function DispInfo(url) 
{
  popupWin = window.open(url,'info_win','resizable,scrollbars,top=5,left=5,width=600,height=350')
}

// used in channel list for Jump To popup list
function jumpTo(strMenu)
{
	if (strMenu.options[strMenu.selectedIndex].value != "")
		top.location.href = strMenu.options[strMenu.selectedIndex].value;
	
	return true;
}

