
function printpage() {
	
	$(".print").show();
	$(".body-leftEdge").hide();
	$(".body-rightEdge").hide();
	$(".header-leftEdge").hide();
	$(".header-logoDropShadow").hide();
	$(".header-rightEdge").hide();
	$(".language").hide();
	$(".search-border").hide();
	$(".body-header-top").attr('style','#ffffff');
	$(".body-header-top").css('background','#FFFFFF');
	$("h2").css('color','#000000');
	$(".result-list-row-header").css('border','0');
	$(".result-list-action-row").css('border','0');
	$(".result-list-row").css('border','0');
	$(".header-logoBackground").css({'background-image':'none'});
	$(".header-background").css('background-image','none');
	
	$(".no-print").hide();
	$(".body-header-topLeftCorner").hide();
	$(".body-header-topCutawayCorner").hide();
	$(".body-header-image").hide();
	
	$(".footer-border").hide();
	$(".body-bottomEdge").hide();
	$("body",top.document).css('background','#FFFFFF');
	
	return false;
}

function printback() {
	
	$(".header-logoBackground").css({'background-image':''});
	$(".header-background").css('background-image','');
	$(".body-header-top").css({'background-image':'','padding-left':'25px'});
	$("body",top.document).css('background','#9DA5A8');
	$("h2").css('color','#FFFFFF');
	$(".no-print").show();
	$(".print").hide();
	$(".body-leftEdge").show();
	$(".body-rightEdge").show();
	$(".header-leftEdge").show();
	$(".header-logoDropShadow").show();
	$(".header-rightEdge").show();
	$(".language").show();
	$(".search-border").show();
	
	$(".body-header-topLeftCorner").show();
	$(".body-header-topCutawayCorner").show();
	$(".body-header-image").show();
	$(".footer-border").show();
	$(".body-bottomEdge").show();
	return false;
}
