//Changes CSS to printable stylesheet, calls the print function, then sets the stylesheet back after a pausing alert
function printweb() {
	var curstyle = document.getElementById('curstyle').href;
	document.getElementById('curstyle').href='/css/dyndns-print.css';
	window.print();
	document.getElementById('curstyle').href=curstyle;
}
