<!--// Window Manager Functions
function openWindow(winloc,winname,w,h)
{
	var winleft = (screen.width - w) / 2;
	var wintop = (screen.height - h) / 2;
	return window.open(winloc,winname,'scrollbars,width='+w+',height='+h+',left='+winleft+',top='+wintop+',resizable');
}

function closeWindow(redirect)
{
	self.close();
	if (redirect != "")
	{
		self.opener.location = redirect;
	}
	else
	{
		self.opener.location.reload();
	}
}
//-->
