function bestViewRow(id2, class2) {
	//for (i=1; i <= 6; i++) {
		//document.getElementById('row'+i).className = class;
	//}
	var tmp = document.getElementById(id2);
	tmp.className = class2;
}

function windowFullPrint(theURL, winName) {
	var w = screen.width;
	var h  = screen.height;

	window.open(theURL, winName, "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width="+w+", height="+h+"");
}
