
function popUpHelp(helpID)
{
	newwindow = window.open('/HelpPopup.aspx#' + helpID, 'HelpWindow', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=500,height=500,left = 640,top = 325');
	newwindow.focus();
}

function popToolWindow(url)
{
	newwindow = window.open(url, 'PopupWindow', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1');
	newwindow.focus();
}