function win(url, method){
	switch(method){
		case 1:
			var w = window.open(url, '_helpWin', 'width=400,height=500,scrollbars,resizable');
			break;
		case 2:
			var w = window.open(url, '_helpWin', 'width=615,height=150');
			break;
	}

	w.window.focus();
	return false;
}

<!-- Nav -->
function display(e){
	var list = e.nextSibling.nextSibling;
	list.style.display = (list.style.display == 'block') ? 'none' : 'block';
	e.blur();
}

document.write('<style type="text/css"><!-- .navcont{ display:none; } --></style>');

<!-- Form -->
function clform(e){
	if(e.value == e.title){
		e.value = '';
	}
}

if(top != self){
	top.location = location;
}