// JavaScript Document

function hidediv(e) {
	document.getElementById(e).style.display='none';
	var e_tab = e+'_tab';
	document.getElementById(e_tab).style.background='none';
}

function showdiv(e) {
	document.getElementById(e).style.display='block';
	var e_tab = e+'_tab';
	document.getElementById(e_tab).style.background='#d5bd96';
}

function printdiv(printpage)
{
	var headstr = "<html><head><title>Driection to Norwich Pharmaceuticals</title><link href=\"css/norwich_main.css\" rel=\"stylesheet\" type=\"text/css\" /></head><body style=\"text-align: left; background: #ffffff;\"><div style=\"background: #ffffff; width: 100%; font-size: 12px; text-align: left; padding: 10px;\">";
	var footstr = "</div></body>";
	var newstr = document.getElementById(printpage).innerHTML;
	var oldstr = document.body.innerHTML;
	document.body.innerHTML = headstr+newstr+footstr;
	window.print(); 
	document.body.innerHTML = oldstr;
	return false;
}