// Microsolve Javascript Document
// Created on: 5/28/05
// Created By Aniglyphics Media
// Last Modified:

<!-- START
function popItUp(target,height) {
	var url = "pops/";
	var suf = ".html";
	var	locate = ""+url+""+target+""+suf+"";
	var	win = window.open(locate,"","width=625,height="+height+",scrollbars=yes,left=0,top=0");
	win.focus();	
}
// END -->


<!-- START
function popExistingNA() {
	var	locate = "pops/na-existing.php";
	var	win = window.open(locate,"","width=625,height=600,scrollbars=yes,left=0,top=0");
	win.focus();	
}
// END -->

<!-- START
function popNewNA() {
	var	locate = "pops/na-new.php";
	var	win = window.open(locate,"","width=625,height=600,scrollbars=yes,left=0,top=0");
	win.focus();	
}
// END -->

<!-- START
function popMultipleNA() {
	var	locate = "pops/na-multiple.php";
	var	win = window.open(locate,"","width=625,height=600,scrollbars=yes,left=0,top=0");
	win.focus();	
}
// END -->


<!-- START
function showLayer(currVar){
	
	var prevVar = document.tracker.place.value;
	
	// Check the Existance of the elements //
	var prevelement = document.getElementById(prevVar);
	var currelement = document.getElementById(currVar);

	// Use Logic to Determine the Output //
	if (prevelement != null) { 
		document.getElementById(prevVar).style.visibility='hidden'; 
	}
	if (currelement != null) { 	
		document.getElementById(currVar).style.visibility='visible';
	}	
	
	document.tracker.place.value=currVar;
} 
// END -->


