// JavaScript Document
function popUp(theURL, name, w, h, t, l) {
	var windowName = name;
	var features = "status=yes,scrollbars=yes,resizable=yes,width="+w+",height="+h+",top="+t+",left="+l+"";
	var newWindow = window.open("", windowName, features);
	newWindow.focus();
	newWindow.location = theURL;
	return false;
}

function showTxt (text){
	if (document.getElementById) {
	
	showMe = document.getElementById(text);
	showMe.style.display = 'inline';
	
	return true
	
	}
}
function hideTxt (text) {
	if (document.getElementById) {
	
	hideMe = document.getElementById(text);
	hideMe.style.display = 'none';
	
	return true
	
	}	
}
