function show(p_id) {

	if ( document.getElementById(p_id).style.display == 'block' ) {

		document.getElementById(p_id).style.display = 'none';

	}
	else {

		document.getElementById(p_id).style.display = 'block';

	}

}

function GoURL(url, target) {

	var w;

	if (target == "_blank") {

		w = window.open(url,"w","");

		w.focus();

	}	
	else {

		document.location = url;

	}

	return false;

}
