function moveParent(url)
{
	window.opener.f = 0;
	window.opener.location = url;
}

function formRefresh(url, target)
{
	document.write("<FORM METHOD=\"POST\" ACTION=\"" + url + "\" NAME=\"refreshForm\">\n");
	document.write("</FORM>\n");
	document.refreshForm.submit();
}

function formSubmit(target)
{
	document.refreshForm.submit();
}

function pop(url, title, options) 
{
	newWin = window.open(url , title , options);
	newWin.focus();
}
