
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openBrWindow(theURL,winName,features) { //v2.0
  var processing = window.open(theURL,winName,features);
  if (processing.opener==null)
  	processing.opener=self;
}

/*
$(document).ready(function() {
	$('.top_nav_link').mouseover(function() {
	 	var topNav= $(this);
		var navID = topNav.attr('id');
		var subNav = $("#" + navID.replace('top_nav_link','sub_nav'));
		subNav.fadeIn('fast');
	});
	
	$('.top_nav_link').mouseout(function() {
	 	var topNav= $(this);
		var navID = topNav.attr('id');
		var subNav = $("#" + navID.replace('top_nav_link','sub_nav'));
		subNav.hide();
	});
	
	$('.sub_nav').mouseover(function() {
	 	$(this).show();
	});
	$('.sub_nav').mouseout(function() {
	 	$(this).hide();
	});
});
*/

function printLayer(lname){
	$('#' + lname).jqprint({ printContainer: false });
}

