//
//	Console.js - © Interactive Ltd
//	By Mahdi Abdulhamid
//

//	Create Channel Dialog
var IDS_WIN_CREATECHANNELDLG_NAME = "WBC_winCreateChannelDlg";
var IDS_WIN_CREATECHANNELDLG_FEATURES ;

//	Delete Channel confirm UI dialogs
var IDS_DELETE_CHANNEL_CONFIRM = "Deleting this Channel will remove it permanently from the system. Continue?";

try 
{
	IDS_WIN_CREATECHANNELDLG_FEATURES = "width=820,height=720,resizable,scrollbars,status=yes" + IDS_DEFAULT_OPEN_POSITION;
	
}
catch(e)
{
}

//	Javascript function in repsonse to "Delete Channel" Console link
function CMS_onClickChannelDelete() {
	return confirm(IDS_DELETE_CHANNEL_CONFIRM);
}

//	Javascript function in response to "Create Channel" Console link
function CMS_openWindowCreateChannel(strDlgURL) {	
	// open a blank window and set the form target to that window
	WBC_openWindowOnFocus(strDlgURL, IDS_WIN_CREATECHANNELDLG_NAME, IDS_WIN_CREATECHANNELDLG_FEATURES);
}