// Reviewed on 10/14/2006

// bust outta frames
if (parent.frames.length > 0) {
	parent.location.href = location.href;
}

function go(thisForm,thisMenu){
	selectedItem = thisForm.url.selectedIndex ;
	newurl = thisForm.url.options[ selectedItem ].value ;
	if (newurl.length != 0) {
		location.href = newurl ;
	}
}

function showhide(id) { 
	var style = document.getElementById(id).style  
	if (style.display == "block"){
		style.display = "none";  
	} else {  
	style.display = "block";  
	}
}

function doLivePreview() {
	var commentText = document.getElementById('comment').value;
	document.getElementById('livePreview').innerHTML = commentText;
}
