var maxHeight = 450;

function openHelp(path, id, width){
	var bars = 'toolbar=no,scrollbars=1,resizable=1';
	var w = parseInt(width);
	if(w == 0){
		w = 300;
	}
	var sizes = 'width='+ (w+70) +',height=' + maxHeight;	
	var wnd = window.open(path + '?id=' + id + '&width='+ w,'',bars+','+sizes);
	wnd.moveTo(100,100);
}

function resizeHelpWindow(){
	var height = getElementHeight('main') + 60;
	var width = getElementWidth('main') + 50;
	
	if (height > maxHeight){
		height = maxHeight;
	} else if (mo){
		height = height+8;
		if(!ie){
			width = width - 22;
		}
	} else {
		if (!ie){
			width = width - 20;
		}
	}
	window.resizeTo(width, height);
}