

function OpenDialog(purl,pname,pwidth,pheight)
{
	psize = "";
	if (pwidth > 0 && pheight > 0)
		psize = "height="+ pheight +",width="+ pwidth +",";

 	pleft = ((screen.width-pwidth)/2);
 	ptop = ((screen.height-pheight)/2);
 	window.open(purl,pname,psize + "top="+ ptop +",left="+ pleft +",resizable=yes,scrollbars=yes,status=no,location=no,toolbar=no,menubar=no",true);
}



function Reload()
{
	if (frameLevel == 0)
		window.location.href = pagePath;
	else
	{
		if (parent)
			parent.Reload();
	}
}

