//Scripts for Lieutenant Governor's website

//Text re-size function

function resizeText(multiplier) {  
if (document.body.style.fontSize == "") 
{  
document.body.style.fontSize = "0.58em";  
}  
document.body.style.fontSize = parseFloat(document.body.style.fontSize) + (multiplier * 0.1) + "em";  
}



//Invokes browser printing function

function show(id) {
var viewer = window.location.search;
if (viewer.indexOf("view=print") > 0 ) {
	document.getElementById('screen').media = 'none';
	document.getElementById('print').media = 'all';
	window.print();
}
}


