function OpenChild(daLink,wid,heigh) 
{
    var helpWnd=openChildWindow(daLink, "help", wid, heigh, 1, 0, 0, 0, "yes", 0);
}
function OpenWin(daLink,wname) 
{
	var newWnd = openChildWindow(daLink, wname, 800, 600, 1, 1, 1, 1, "yes", 1);        
}
function openChildWindow(url, windowName, width, height, statusBarFlag, scrollBarsFlag, menuBarFlag, toolBarFlag, dependentFlag, resizableFlag){
	var newWindow = window.open(url, windowName, "width=" + width + ",height=" + height + ",status=" + statusBarFlag + ",scrollbars=" + scrollBarsFlag + ",menubar=" + menuBarFlag + ",toolbar=" + toolBarFlag + ",resizable=" + resizableFlag + ",dependent=" + dependentFlag);
	if (newWindow == null){
		alert("Please disable your popup blocker to use this website.");
	}
	return newWindow;
}