function Help( daLink )
{
	var comwin = window.open(daLink,'Help','width=600,height=400,scrollbars=yes');
	comwin.focus() ;
}

function openNewWindow(theLink,theWidth,theHeight)
{
	var x = (screen.width - theWidth)/2;
	var y = (screen.height - theHeight)/2 - 100;
	var features = 'width='+theWidth+',height='+theHeight+',screenX='+x+',screenY='+y+',scrollbars=yes';
	var newwin = window.open(theLink,'Help',features);
	newwin.focus() ;
}