function closeWindow()
{
	window.close();
}


function openWindow(url, windowName, width, height, scrollbars, resizable)
{
	target = window.open(url, windowName, 'width='+width+',height='+height+',location=no,status=yes,scrollbars='+scrollbars+',resizable='+resizable+',toolbar=no,status=yes');
	target.focus();
}


function submitForm()
{
	if (checkForm(document.wconfig))
	{
		/** Need to update any rich text textarea boxes before doing a submit */
		if(editor)
		{
			editor.prepareHTML();
		}
		document.wconfig.submit();
	}
}