function doprint(wdw) {
	if (!wdw) wdw = self;
	if (!wdw.focus) wdw.focus = false; //ie4
	if (wdw.focus) wdw.focus();
	if (wdw.print) wdw.print();
	else alert("To print the inner window, please \n focus the window and use your right mousebutton");
}
//onclick="doprint(window)"
