
function Write(str) {
    document.write(str);
}

function showPhoto(src) {
    var wnd = window.open('/image.php?src='+src+'&mode=nodownload', "photo", "menubar=no,location=no,resizable=no,scrollbars=no,status=no,width=200,height=200");
    wnd.focus();
}

function _print() {
	window.print();
	if (event != undefined) event.returnValue = false;
}