function ShowIssue(appPath, itemID, moduleID, act)
{
	var newWin = window.top.open(
		 appPath + "/DesktopModules/Issues/IssueView.aspx" +
			"?ItemID=" + itemID + "&mid=" + moduleID + "&action=" + act,
		"Issue",
		"left=10,top=10,width=1000,height=600,menubar=0,resizable=0,status=0,toolbar=0,titlebar=0,location=0,scrollbars=1",
		true);
	newWin.focus();
	return;
}
function ShowIssueDetails(appPath, itemID, moduleID)
{
	var newWin = window.top.open(
		 appPath + "/DesktopModules/Issues/IssueView.aspx" +
			"?action=view&ItemID=" + itemID + "&mid=" + moduleID,
		"IssueDetails",
		"left=200,top=160,width=620,height=430,menubar=0,resizable=0,status=0,toolbar=0,titlebar=0,location=0,scrollbars=1",
		true);
	newWin.focus();
	return;
}